File tree Expand file tree Collapse file tree 5 files changed +10
-49
lines changed Expand file tree Collapse file tree 5 files changed +10
-49
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,4 @@ status = [
7
7
" build (stable)" ,
8
8
" test" ,
9
9
" test-strict" ,
10
- " clippy_check" ,
11
10
]
Original file line number Diff line number Diff line change @@ -21,42 +21,30 @@ jobs:
21
21
- name : Checkout repository
22
22
uses : actions/checkout@v3
23
23
- name : Install Rust
24
- uses : actions-rs/ toolchain@v1
24
+ uses : dtolnay/rust- toolchain@master
25
25
with :
26
26
toolchain : ${{ matrix.rust }}
27
- profile : minimal
28
- override : true
29
- - uses : actions-rs/cargo@v1
30
- with :
31
- command : check
27
+ components : clippy
28
+ - run : cargo clippy
32
29
33
30
test :
34
31
runs-on : ubuntu-latest
35
32
steps :
36
33
- name : Checkout repository
37
34
uses : actions/checkout@v3
38
35
- name : Install Rust
39
- uses : actions-rs/ toolchain@v1
36
+ uses : dtolnay/rust- toolchain@master
40
37
with :
41
38
toolchain : stable
42
- profile : minimal
43
- override : true
44
- - uses : actions-rs/cargo@v1
45
- with :
46
- command : test
39
+ - run : cargo test
47
40
48
41
test-strict :
49
42
runs-on : ubuntu-latest
50
43
steps :
51
44
- name : Checkout repository
52
45
uses : actions/checkout@v3
53
46
- name : Install Rust
54
- uses : actions-rs/ toolchain@v1
47
+ uses : dtolnay/rust- toolchain@master
55
48
with :
56
49
toolchain : stable
57
- profile : minimal
58
- override : true
59
- - uses : actions-rs/cargo@v1
60
- with :
61
- command : test
62
- args : --all-features
50
+ - run : cargo test --all-features
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@v3
14
- - uses : actions-rs/ toolchain@v1
14
+ - uses : dtolnay/rust- toolchain@master
15
15
with :
16
- profile : minimal
17
16
toolchain : stable
18
- override : true
19
17
components : rustfmt
20
- - uses : actions-rs/cargo@v1
21
- with :
22
- command : fmt
23
- args : --all -- --check
18
+ - run : cargo fmt --all -- --check
You can’t perform that action at this time.
0 commit comments