We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f64907 commit 74114e4Copy full SHA for 74114e4
.github/workflows/ci.yml
@@ -30,4 +30,8 @@ jobs:
30
with:
31
toolchain: ${{ matrix.rust }}
32
- name: Run tests
33
+ if: ${{ matrix.rust != '1.61.0' }}
34
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --features cortex-m/critical-section-single-core
35
+ - name: Run tests for 1.61.0 (need to exclude cortex-m-pac)
36
+ if: ${{ matrix.rust == '1.61.0' }}
37
+ run: cargo test --all --exclude cortex-m-rt --exclude testsuite --exclude cortex-m-pac --features cortex-m/critical-section-single-core
0 commit comments