Skip to content

Commit 7f97bdc

Browse files
committed
Disable github actions annotations for matrix
The matrix for all the device variants are often failing for the same reason. This results into many duplicated annotations when viewing a PR. This is redundant noise, which can be eliminated with not using actions-rs/cargo and using plain cargo instead
1 parent ef27484 commit 7f97bdc

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ jobs:
4949
target: thumbv7em-none-eabihf
5050
override: true
5151
profile: minimal
52-
- uses: actions-rs/cargo@v1
53-
with:
54-
command: check
55-
args: --features=${{ matrix.mcu }},ld,${{ matrix.features }} --lib --examples
52+
- run: cargo check --features=${{ matrix.mcu }},ld,${{ matrix.features }} --lib --examples
5653

5754
# This is our MSRV. However this is only for documentation
5855
# purposes and should be increased if newer features are used.

0 commit comments

Comments
 (0)