name: CI
on:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
steps:
- uses: actions/checkout@master
- name: Install latest stable Rust
run: |
rustup update stable
rustup default stable
- name: Compile the binary
run: cargo build
- name: Test the binary
run: cargo test