File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -101,19 +101,24 @@ jobs:
101
101
# . -> target
102
102
# ./crates/proc-macro-srv/proc-macro-test/imp -> target
103
103
104
- - uses : taiki-e/install-action@nextest
104
+ - name : Install nextest
105
+ uses : taiki-e/install-action@nextest
105
106
106
107
- name : Codegen checks (rust-analyzer)
107
108
if : matrix.os == 'ubuntu-latest'
108
109
run : cargo codegen --check
109
110
110
- - name : Compile ( tests)
111
+ - name : Compile tests
111
112
run : cargo test --no-run
112
113
113
- - name : Test
114
+ - name : Run tests
114
115
run : cargo nextest run --no-fail-fast --hide-progress-bar --status-level fail
115
116
116
- - name : clippy
117
+ - name : Cancel parallel jobs
118
+ if : failure()
119
+ uses : action-pack/cancel@v1
120
+
121
+ - name : Run Clippy
117
122
if : matrix.os == 'macos-latest'
118
123
run : cargo clippy --all-targets -- -D clippy::disallowed_macros -D clippy::dbg_macro -D clippy::todo -D clippy::print_stdout -D clippy::print_stderr
119
124
You can’t perform that action at this time.
0 commit comments