Apply clippy changes #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
merge_group: | |
name: Lints compliance check | |
env: | |
CLIPPY_PARAMS: -W clippy::all -D warnings -A clippy::module_inception | |
jobs: | |
clippy: | |
strategy: | |
matrix: | |
board: [hifive1, hifive1-revb, redv, lofive, lofive-r1] | |
toolchain: [ stable, nightly ] | |
include: | |
# Nightly is only for reference and allowed to fail | |
- toolchain: nightly | |
experimental: true | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental || false }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Rust toolchain | |
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
- name: Install Rust target | |
run: rustup target install riscv32imc-unknown-none-elf | |
- name: Run clippy (direct mode) | |
run: cargo clippy --features board-${{ matrix.board }} -- $CLIPPY_PARAMS | |
- name: Run clippy (vectored mode) | |
run: cargo clippy --features v-trap,board-${{ matrix.board }} -- $CLIPPY_PARAMS | |
# Job to check that all the lint checks succeeded | |
clippy-check: | |
needs: | |
- clippy | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}' |