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 155efae commit e7ee586Copy full SHA for e7ee586
.github/workflows/ci.yml
@@ -28,6 +28,8 @@ jobs:
28
- uses: actions/checkout@v4
29
- name: Install required packages
30
run: sudo apt install --no-install-recommends --yes libhwloc-dev nvidia-cuda-toolkit ocl-icd-opencl-dev
31
+ - name: Install cargo clippy
32
+ run: rustup component add clippy
33
- name: Run cargo clippy
34
run: cargo clippy --all-targets --workspace -- -D warnings
35
@@ -36,6 +38,8 @@ jobs:
36
38
name: Checking fmt
37
39
steps:
40
41
+ - name: Install cargo fmt
42
+ run: rustup component add rustfmt
43
- name: Run cargo fmt
44
run: cargo fmt --all -- --check
45
0 commit comments