File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 38
38
run : |
39
39
chmod +x etc/ci/clippy-annotation.sh
40
40
41
- - name : clippy
41
+ - name : clippy (with annotations)
42
+ if : matrix.platform.target == 'x86_64-unknown-linux-gnu' && matrix.features == ''
42
43
run : cargo clippy --features "${{ matrix.features }}" --target ${{ matrix.platform.target }} --message-format=json | etc/ci/clippy-annotation.sh
43
44
45
+ - name : clippy
46
+ if : matrix.platform.target != 'x86_64-unknown-linux-gnu' || matrix.features != ''
47
+ run : cargo clippy --features "${{ matrix.features }}" --target ${{ matrix.platform.target }} --message-format=json
48
+
44
49
- name : Cargo test
45
50
run : cargo test --features "${{ matrix.features }} enable-slow-tests" --target ${{ matrix.platform.target }}
46
51
You can’t perform that action at this time.
0 commit comments