Skip to content

Move to the smaller, cargo-team maintained home crate (#113) #5

Move to the smaller, cargo-team maintained home crate (#113)

Move to the smaller, cargo-team maintained home crate (#113) #5

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
unit-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [stable, '1.36']
runs-on: ${{ matrix.os }}
env:
RUSTFLAGS: -D warnings
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- name: Run tests
run: cargo test -- --color always