Skip to content

Commit b3b0955

Browse files
committed
ci: run clippy on acpi crate
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.
1 parent bdaa870 commit b3b0955

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,20 @@ jobs:
6464

6565
- name: Run AML test suite
6666
run: cargo run --bin aml_tester -- -p tests --reset
67+
68+
clippy:
69+
runs-on: ubuntu-latest
70+
steps:
71+
- uses: actions/checkout@v2
72+
with:
73+
submodules: 'recursive'
74+
- name: Install Rust
75+
uses: actions-rs/toolchain@v1
76+
with:
77+
toolchain: nightly
78+
default: true
79+
profile: minimal
80+
components: clippy
81+
82+
- name: Run clippy
83+
run: cargo clippy -p acpi

0 commit comments

Comments
 (0)