Skip to content

Commit

Permalink
ci: run clippy on acpi crate
Browse files Browse the repository at this point in the history
Now that all warnings have been fixed for the acpi crate, run clippy
as part of CI. Once the warnings for the rest of the crates are fixed,
they can be included in the CI run.
  • Loading branch information
00xc committed Nov 22, 2024
1 parent bdaa870 commit b3b0955
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,20 @@ jobs:

- name: Run AML test suite
run: cargo run --bin aml_tester -- -p tests --reset

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
default: true
profile: minimal
components: clippy

- name: Run clippy
run: cargo clippy -p acpi

0 comments on commit b3b0955

Please sign in to comment.