name: Rust
on:
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Run tests
run: cargo test
build-windows:
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Run tests
run: cargo test