Skip to content

Commit bcd69ae

Browse files
committed
Fix and improve some CI configuration naming
1 parent 6051b49 commit bcd69ae

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/audit.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Audit
33
on: [push, pull_request]
44

55
jobs:
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: |
@@ -21,5 +21,5 @@ jobs:
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

.github/workflows/format.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
rustfmt:
7-
name: rustfmt
7+
name: Rustfmt
88

99
runs-on: ubuntu-latest
1010

@@ -15,7 +15,7 @@ jobs:
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

@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626

2727
steps:
28-
- name: Cache
28+
- name: Cache Taplo
2929
uses: actions/cache@v2
3030
with:
3131
path: |
@@ -37,5 +37,5 @@ jobs:
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

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff 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:

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v2
14-
- name: Publish
14+
- name: Test Publish
1515
run:
1616
cargo publish --dry-run

.github/workflows/spellcheck.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
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: |
@@ -21,5 +21,5 @@ jobs:
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

.github/workflows/validate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
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: |

0 commit comments

Comments
 (0)