File tree 1 file changed +0
-10
lines changed 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -29,30 +29,20 @@ jobs:
29
29
# echo "MSRV=$MSRV" | tee --append "$GITHUB_OUTPUT"
30
30
31
31
check_clippy :
32
- needs : set-msrv
33
32
runs-on : ubuntu-24.04
34
33
name : Clippy
35
34
steps :
36
35
- uses : actions/checkout@v4
37
- - uses : dtolnay/rust-toolchain@master
38
- with :
39
- toolchain : ${{ needs.set-msrv.outputs.msrv }}
40
- components : clippy
41
36
- name : Install required packages
42
37
run : sudo apt install --no-install-recommends --yes libhwloc-dev ocl-icd-opencl-dev
43
38
- name : Run cargo clippy
44
39
run : cargo clippy --all-targets --workspace -- -D warnings
45
40
46
41
check_fmt :
47
- needs : set-msrv
48
42
runs-on : ubuntu-24.04
49
43
name : Checking fmt
50
44
steps :
51
45
- uses : actions/checkout@v4
52
- - uses : dtolnay/rust-toolchain@master
53
- with :
54
- toolchain : ${{ needs.set-msrv.outputs.msrv }}
55
- components : rustfmt
56
46
- name : Run cargo fmt
57
47
run : cargo fmt --all -- --check
58
48
You can’t perform that action at this time.
0 commit comments