Test in GH Actions

This commit is contained in:
Smitty 2021-05-28 11:56:48 -04:00
parent d49f692b3a
commit a2c5829526

17
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,17 @@
on: [push]
name: Build/test
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features