We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34f3419 commit 0fef31eCopy full SHA for 0fef31e
.github/workflows/ci.yml
@@ -27,4 +27,8 @@ jobs:
27
with:
28
toolchain: ${{ matrix.rust }}
29
- name: Run tests
30
+ if: ${{ matrix.rust != '1.61.0' }}
31
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --features cortex-m/critical-section-single-core
32
+ - name: Run tests for 1.61.0 (need to exclude cortex-m-pac)
33
+ if: ${{ matrix.rust == '1.61.0' }}
34
+ run: cargo test --all --exclude cortex-m-rt --exclude testsuite --exclude cortex-m-pac --features cortex-m/critical-section-single-core
0 commit comments