Skip to content

Commit

Permalink
Fix and improve some CI configuration naming
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Dec 10, 2021
1 parent 6051b49 commit bcd69ae
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: Audit
on: [push, pull_request]

jobs:
rustfmt:
audit:
name: Audit

runs-on: ubuntu-latest

steps:
- name: Cache
- name: Cache cargo-audit
uses: actions/cache@v2
with:
path: |
Expand All @@ -21,5 +21,5 @@ jobs:
run: cargo install cargo-audit
- name: Checkout
uses: actions/checkout@v2
- name: Audit
- name: Run Audit
run: cargo audit -D warnings
8 changes: 4 additions & 4 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
rustfmt:
name: rustfmt
name: Rustfmt

runs-on: ubuntu-latest

Expand All @@ -15,7 +15,7 @@ jobs:
rustup default nightly
- name: Checkout
uses: actions/checkout@v2
- name: rustfmt
- name: Run Rustfmt
run:
cargo fmt --check

Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Cache
- name: Cache Taplo
uses: actions/cache@v2
with:
path: |
Expand All @@ -37,5 +37,5 @@ jobs:
run: cargo install taplo-cli
- name: Checkout
uses: actions/checkout@v2
- name: Taplo
- name: Run Taplo
run: taplo fmt --check
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
rustup default ${{ matrix.matrix.channel }}
- name: Checkout
uses: actions/checkout@v2
- name: Clippy
- name: Run Clippy
run:
cargo clippy --all-targets --workspace ${{ matrix.matrix.features }} -- -D warnings
- name: Rustdoc
- name: Run Rustdoc
env:
RUSTDOCFLAGS: -D warnings
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Publish
- name: Test Publish
run:
cargo publish --dry-run
4 changes: 2 additions & 2 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Cache
- name: Cache cargo-spellcheck
uses: actions/cache@v2
with:
path: |
Expand All @@ -21,5 +21,5 @@ jobs:
run: cargo install cargo-spellcheck --locked
- name: Checkout
uses: actions/checkout@v2
- name: Spellcheck
- name: Run Spellcheck
run: cargo spellcheck check -m 1 2>/dev/null
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
rustup toolchain install nightly --profile minimal --component miri,rust-src --allow-downgrade
rustup default nightly
- name: Cache
- name: Cache xargo
uses: actions/cache@v2
with:
path: |
Expand Down

0 comments on commit bcd69ae

Please sign in to comment.