File tree 1 file changed +4
-16
lines changed
1 file changed +4
-16
lines changed Original file line number Diff line number Diff line change @@ -85,28 +85,16 @@ jobs:
85
85
directory : " ./llvm"
86
86
87
87
- name : Cargo test (Unit)
88
- uses : actions-rs/cargo@v1
89
- with :
90
- command : test
91
- args : --lib -- --nocapture
88
+ run : cargo test --lib -- --nocapture
92
89
93
90
- name : Cargo test (Correctness)
94
- uses : actions-rs/cargo@v1
95
- with :
96
- command : test
97
- args : correctness -- --nocapture --test-threads=1
91
+ run : cargo test correctness -- --nocapture --test-threads=1
98
92
99
93
- name : Cargo test (Integration)
100
- uses : actions-rs/cargo@v1
101
- with :
102
- command : test
103
- args : integration -- --nocapture --test-threads=1
94
+ run : cargo test integration -- --nocapture --test-threads=1
104
95
105
96
- name : Release Build
106
- uses : actions-rs/cargo@v1
107
- with :
108
- command : build
109
- args : --release
97
+ run : cargo build --release --workspace
110
98
111
99
- uses : actions/upload-artifact@master
112
100
with :
You can’t perform that action at this time.
0 commit comments