Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
nightly: true
- name: MSRV
toolchain: "1.86.0"
skip: --skip defmt
- name: no_std
toolchain: stable
target: thumbv7m-none-eabi
Expand All @@ -55,7 +56,9 @@ jobs:

- name: Run tests
if: ${{ !matrix.no_std }}
run: cargo test --verbose
# The `defmt` test requires a newer Rust version, so skip the test
# for the MSRV.
run: cargo test --verbose -- ${{ matrix.skip }}

- name: Cargo test all features
if: matrix.nightly
Expand Down
Loading
Loading