File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ name: Audit
33on : [push, pull_request]
44
55jobs :
6- rustfmt :
6+ audit :
77 name : Audit
88
99 runs-on : ubuntu-latest
1010
1111 steps :
12- - name : Cache
12+ - name : Cache cargo-audit
1313 uses : actions/cache@v2
1414 with :
1515 path : |
2121 run : cargo install cargo-audit
2222 - name : Checkout
2323 uses : actions/checkout@v2
24- - name : Audit
24+ - name : Run Audit
2525 run : cargo audit -D warnings
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ on: [push, pull_request]
44
55jobs :
66 rustfmt :
7- name : rustfmt
7+ name : Rustfmt
88
99 runs-on : ubuntu-latest
1010
1515 rustup default nightly
1616 - name : Checkout
1717 uses : actions/checkout@v2
18- - name : rustfmt
18+ - name : Run Rustfmt
1919 run :
2020 cargo fmt --check
2121
2525 runs-on : ubuntu-latest
2626
2727 steps :
28- - name : Cache
28+ - name : Cache Taplo
2929 uses : actions/cache@v2
3030 with :
3131 path : |
3737 run : cargo install taplo-cli
3838 - name : Checkout
3939 uses : actions/checkout@v2
40- - name : Taplo
40+ - name : Run Taplo
4141 run : taplo fmt --check
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ jobs:
2828 rustup default ${{ matrix.matrix.channel }}
2929 - name : Checkout
3030 uses : actions/checkout@v2
31- - name : Clippy
31+ - name : Run Clippy
3232 run :
3333 cargo clippy --all-targets --workspace ${{ matrix.matrix.features }} -- -D warnings
34- - name : Rustdoc
34+ - name : Run Rustdoc
3535 env :
3636 RUSTDOCFLAGS : -D warnings
3737 run :
Original file line number Diff line number Diff line change 1111 steps :
1212 - name : Checkout
1313 uses : actions/checkout@v2
14- - name : Publish
14+ - name : Test Publish
1515 run :
1616 cargo publish --dry-run
Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010
1111 steps :
12- - name : Cache
12+ - name : Cache cargo-spellcheck
1313 uses : actions/cache@v2
1414 with :
1515 path : |
2121 run : cargo install cargo-spellcheck --locked
2222 - name : Checkout
2323 uses : actions/checkout@v2
24- - name : Spellcheck
24+ - name : Run Spellcheck
2525 run : cargo spellcheck check -m 1 2>/dev/null
Original file line number Diff line number Diff line change 5050 run : |
5151 rustup toolchain install nightly --profile minimal --component miri,rust-src --allow-downgrade
5252 rustup default nightly
53- - name : Cache
53+ - name : Cache xargo
5454 uses : actions/cache@v2
5555 with :
5656 path : |
You can’t perform that action at this time.
0 commit comments