Skip to content

Commit 3115430

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 3115430

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,19 @@ 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+
81+
- name: Run clippy
82+
run: cargo clippy -p acpi

0 commit comments

Comments
 (0)