Merge pull request #1080 from PSeitz/more_tests

test all features in github actions
This commit is contained in:
PSeitz
2021-06-15 10:51:57 +02:00
committed by GitHub

View File

@@ -18,7 +18,13 @@ jobs:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose --workspace
- name: Install latest nightly to test also against unstable feature flag
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt
- name: Run tests
run: cargo test --verbose --workspace
run: cargo test --all-features --verbose --workspace
- name: Check Formatting
run: cargo fmt --all -- --check