diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0cc1e7d11..59fa5f0a6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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