We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 658d1b5 commit 6de6fdbCopy full SHA for 6de6fdb
.github/workflows/ci.yml
@@ -24,6 +24,8 @@ jobs:
24
- uses: actions/checkout@v4
25
- name: Install required packages
26
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
29
- name: Run cargo clippy
30
run: cargo clippy --all-targets --workspace -- -D warnings
31
@@ -32,6 +34,8 @@ jobs:
32
34
name: Checking fmt
33
35
steps:
36
37
+ - name: Install cargo fmt
38
+ run: rustup component add rustfmt
39
- name: Run cargo fmt
40
run: cargo fmt --all -- --check
41
0 commit comments