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 390f906 commit f6cab2cCopy full SHA for f6cab2c
.github/workflows/ci.yml
@@ -52,6 +52,9 @@ jobs:
52
- name: Install rustfmt
53
run: rustup component add rustfmt
54
55
+ - name: Install clippy
56
+ run: rustup component add clippy
57
+
58
- name: Download artifact
59
run: curl -LO https://github.com/antoyo/gcc/releases/latest/download/${{ matrix.libgccjit_version.gcc }}
60
@@ -98,6 +101,11 @@ jobs:
98
101
- name: Check formatting
99
102
run: cargo fmt -- --check
100
103
104
+ - name: clippy
105
+ run: |
106
+ cargo clippy --all-targets -- -D warnings
107
+ cargo clippy --all-targets --features master -- -D warnings
108
109
duplicates:
110
runs-on: ubuntu-latest
111
steps:
0 commit comments