File tree 6 files changed +13
-13
lines changed
6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ name: Audit
3
3
on : [push, pull_request]
4
4
5
5
jobs :
6
- rustfmt :
6
+ audit :
7
7
name : Audit
8
8
9
9
runs-on : ubuntu-latest
10
10
11
11
steps :
12
- - name : Cache
12
+ - name : Cache cargo-audit
13
13
uses : actions/cache@v2
14
14
with :
15
15
path : |
21
21
run : cargo install cargo-audit
22
22
- name : Checkout
23
23
uses : actions/checkout@v2
24
- - name : Audit
24
+ - name : Run Audit
25
25
run : cargo audit -D warnings
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ on: [push, pull_request]
4
4
5
5
jobs :
6
6
rustfmt :
7
- name : rustfmt
7
+ name : Rustfmt
8
8
9
9
runs-on : ubuntu-latest
10
10
15
15
rustup default nightly
16
16
- name : Checkout
17
17
uses : actions/checkout@v2
18
- - name : rustfmt
18
+ - name : Run Rustfmt
19
19
run :
20
20
cargo fmt --check
21
21
25
25
runs-on : ubuntu-latest
26
26
27
27
steps :
28
- - name : Cache
28
+ - name : Cache Taplo
29
29
uses : actions/cache@v2
30
30
with :
31
31
path : |
37
37
run : cargo install taplo-cli
38
38
- name : Checkout
39
39
uses : actions/checkout@v2
40
- - name : Taplo
40
+ - name : Run Taplo
41
41
run : taplo fmt --check
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ jobs:
28
28
rustup default ${{ matrix.matrix.channel }}
29
29
- name : Checkout
30
30
uses : actions/checkout@v2
31
- - name : Clippy
31
+ - name : Run Clippy
32
32
run :
33
33
cargo clippy --all-targets --workspace ${{ matrix.matrix.features }} -- -D warnings
34
- - name : Rustdoc
34
+ - name : Run Rustdoc
35
35
env :
36
36
RUSTDOCFLAGS : -D warnings
37
37
run :
Original file line number Diff line number Diff line change 11
11
steps :
12
12
- name : Checkout
13
13
uses : actions/checkout@v2
14
- - name : Publish
14
+ - name : Test Publish
15
15
run :
16
16
cargo publish --dry-run
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
11
11
steps :
12
- - name : Cache
12
+ - name : Cache cargo-spellcheck
13
13
uses : actions/cache@v2
14
14
with :
15
15
path : |
21
21
run : cargo install cargo-spellcheck --locked
22
22
- name : Checkout
23
23
uses : actions/checkout@v2
24
- - name : Spellcheck
24
+ - name : Run Spellcheck
25
25
run : cargo spellcheck check -m 1 2>/dev/null
Original file line number Diff line number Diff line change 50
50
run : |
51
51
rustup toolchain install nightly --profile minimal --component miri,rust-src --allow-downgrade
52
52
rustup default nightly
53
- - name : Cache
53
+ - name : Cache xargo
54
54
uses : actions/cache@v2
55
55
with :
56
56
path : |
You can’t perform that action at this time.
0 commit comments