File tree Expand file tree Collapse file tree 3 files changed +16
-31
lines changed Expand file tree Collapse file tree 3 files changed +16
-31
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
updates :
3
- - package-ecosystem : cargo
4
- directory : " /"
5
- schedule :
6
- interval : daily
7
- - package-ecosystem : github-actions
8
- directory : " /"
9
- schedule :
10
- interval : daily
3
+ - package-ecosystem : cargo
4
+ directory : " /"
5
+ schedule :
6
+ interval : daily
7
+ - package-ecosystem : github-actions
8
+ directory : " /"
9
+ schedule :
10
+ interval : daily
11
+ ignore :
12
+ - dependency-name : dtolnay/rust-toolchain
Original file line number Diff line number Diff line change @@ -34,42 +34,28 @@ jobs:
34
34
# rust: stable
35
35
steps :
36
36
- uses : actions/checkout@v3
37
- - uses : actions-rs/ toolchain@v1
37
+ - uses : dtolnay/rust- toolchain@master
38
38
with :
39
- profile : minimal
40
39
toolchain : ${{ matrix.rust }}
41
- override : true
42
- - uses : actions-rs/cargo@v1
43
- with :
44
- command : test
45
- args : --all-features
40
+ - run : cargo test --all-features
46
41
47
42
fmt :
48
43
name : format
49
44
runs-on : ubuntu-latest
50
45
steps :
51
46
- uses : actions/checkout@v3
52
- - uses : actions-rs/ toolchain@v1
47
+ - uses : dtolnay/rust- toolchain@nightly
53
48
with :
54
- toolchain : nightly
55
- override : true
56
- profile : minimal
57
49
components : rustfmt
58
- - uses : actions-rs/cargo@v1
59
- with :
60
- command : fmt
61
- args : --all -- --check
50
+ - run : cargo fmt --all --check
62
51
63
52
clippy :
64
53
name : lint
65
54
runs-on : ubuntu-latest
66
55
steps :
67
56
- uses : actions/checkout@v3
68
- - uses : actions-rs/ toolchain@v1
57
+ - uses : dtolnay/rust- toolchain@nightly
69
58
with :
70
- toolchain : nightly
71
- override : true
72
- profile : minimal
73
59
components : clippy
74
60
- uses : actions-rs/clippy-check@v1
75
61
with :
Original file line number Diff line number Diff line change 14
14
uses : actions/checkout@v3
15
15
16
16
- name : Install nightly toolchain
17
- uses : actions-rs/ toolchain@v1
17
+ uses : dtolnay/rust- toolchain@nightly
18
18
with :
19
- toolchain : nightly
20
- profile : minimal
21
- override : true
22
19
components : llvm-tools-preview
23
20
24
21
- name : Install cargo-llvm-cov
You can’t perform that action at this time.
0 commit comments