Skip to content

Commit

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

ci-libs:
ci-crates:
runs-on: ubuntu-latest
strategy:
matrix:
crate: [pic32-hal, mips-rt]
include:
- crate: pic32-hal
features: "pic32mx2xxfxxxb, usb-device"
- crate: pic32-hal
features: "pic32mx2xxfxxxb, usb-device"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rust-src, clippy
profile: minimal
toolchain: nightly
override: true
components: rust-src, clippy
- run: cargo check --features "${{ matrix.features }}"
working-directory: ./${{ matrix.crate }}
- run: cargo clippy --no-deps --features "${{ matrix.features }}"
working-directory: ./${{ matrix.crate }}
working-directory: ./${{ matrix.crate }}

0 comments on commit b8be485

Please sign in to comment.