File tree Expand file tree Collapse file tree 1 file changed +31
-14
lines changed Expand file tree Collapse file tree 1 file changed +31
-14
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,19 @@ jobs:
34
34
- uses : actions-rs/toolchain@v1
35
35
with :
36
36
toolchain : beta
37
- - name : Build
38
- run : cargo build --verbose --all
39
- - name : Run tests
40
- run : cargo test --verbose --all
41
- - name : Docs
42
- run : cargo doc --verbose --all
37
+ override : true
38
+ - uses : actions-rs/cargo@v1
39
+ with :
40
+ command : build
41
+ args : --verbose --all
42
+ - uses : actions-rs/cargo@v1
43
+ with :
44
+ command : test
45
+ args : --verbose --all
46
+ - uses : actions-rs/cargo@v1
47
+ with :
48
+ command : doc
49
+ args : --verbose --all
43
50
44
51
build_nightly :
45
52
runs-on : ubuntu-latest
@@ -49,12 +56,19 @@ jobs:
49
56
- uses : actions-rs/toolchain@v1
50
57
with :
51
58
toolchain : nightly
52
- - name : Build
53
- run : cargo build --verbose --all
54
- - name : Run tests
55
- run : cargo test --verbose --all
56
- - name : Docs
57
- run : cargo doc --verbose --all
59
+ override : true
60
+ - uses : actions-rs/cargo@v1
61
+ with :
62
+ command : build
63
+ args : --verbose --all
64
+ - uses : actions-rs/cargo@v1
65
+ with :
66
+ command : test
67
+ args : --verbose --all
68
+ - uses : actions-rs/cargo@v1
69
+ with :
70
+ command : doc
71
+ args : --verbose --all
58
72
59
73
check_big_endian :
60
74
runs-on : ubuntu-latest
65
79
with :
66
80
toolchain : stable
67
81
target : powerpc64-unknown-linux-gnu
68
- - name : Check
69
- run : cargo check --verbose --target powerpc64-unknown-linux-gnu --lib --bins --tests
82
+ override : true
83
+ - uses : actions-rs/cargo@v1
84
+ with :
85
+ command : check
86
+ args : --verbose --lib --bins --tests
You can’t perform that action at this time.
0 commit comments