Skip to content

Commit

Permalink
clippy only runs for embedded target?
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Jun 16, 2024
1 parent 1d3aeeb commit 46c8431
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
- name: Install nextest
uses: taiki-e/install-action@nextest
- run: cargo nextest run --all-features -p va108xx-hal
- run: cargo test --doc -p va108xx-hal
# I think we can skip those on an embedded crate..
# - run: cargo test --doc -p va108xx-hal

fmt:
name: Check formatting
Expand All @@ -46,4 +47,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy -- -D warnings
with:
targets: "thumbv6m-none-eabi"
- run: cargo clippy --target thumb6m-none-eabi -- -D warnings

0 comments on commit 46c8431

Please sign in to comment.