Skip to content

Commit 6de6fdb

Browse files
galarghvmx
authored andcommitted
chore: install clippy and rustfmt
1 parent 658d1b5 commit 6de6fdb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
- uses: actions/checkout@v4
2525
- name: Install required packages
2626
run: sudo apt install --no-install-recommends --yes libhwloc-dev ocl-icd-opencl-dev
27+
- name: Install cargo clippy
28+
run: rustup component add clippy
2729
- name: Run cargo clippy
2830
run: cargo clippy --all-targets --workspace -- -D warnings
2931

@@ -32,6 +34,8 @@ jobs:
3234
name: Checking fmt
3335
steps:
3436
- uses: actions/checkout@v4
37+
- name: Install cargo fmt
38+
run: rustup component add rustfmt
3539
- name: Run cargo fmt
3640
run: cargo fmt --all -- --check
3741

0 commit comments

Comments
 (0)