use nightly for tests

This commit is contained in:
Pascal Seitz
2021-06-15 09:50:17 +02:00
parent a40ff35453
commit 060b83159a

View File

@@ -18,6 +18,12 @@ 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 --all-features --verbose --workspace
- name: Check Formatting