Add tests to our CI

Also found some doctests that were failing
This commit is contained in:
huntc
2021-07-06 12:23:51 +10:00
parent ed83b93b6d
commit e13aa4c2a0
4 changed files with 11 additions and 5 deletions

View File

@ -122,6 +122,16 @@ jobs:
- name: Check fmt
run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Test
run: cd embassy && cargo test
metapac_gen:
runs-on: ubuntu-latest
steps: