Skip to content

Commit

Permalink
change ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kiffie committed Jun 24, 2023
1 parent 1d3d621 commit 11e0ac5
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,27 @@ jobs:
- run: cargo clippy --no-deps
working-directory: ./examples/${{ matrix.example }}

ci-check-all:
runs-on: ubuntu-latest
strategy:
matrix:
crate: [pic32-hal]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rust-src, clippy
- run: ./check_all
working-directory: ./${{ matrix.crate }}

ci-crates:
runs-on: ubuntu-latest
strategy:
matrix:
crate: [mips-rt, pic32-config-sector, pic32-hal]
include:
- crate: pic32-hal
features: "pic32mx2xxfxxxb, usb-device"
crate: [mips-rt, pic32-config-sector]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit 11e0ac5

Please sign in to comment.