Skip to content

Commit

Permalink
Consistent capitalization in sub-job names
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Dec 26, 2024
1 parent 9607133 commit f54ab7a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: format
- name: Format
run: cargo fmt --check

check:
Expand All @@ -26,17 +26,17 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- name: Install cargo-binstall
uses: cargo-bins/[email protected]
- name: install
- name: Install
run: cargo binstall cargo-all-features
- name: check
- name: Check
run: cargo check-all-features

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: clippy
- name: Clippy
run: cargo clippy --all-features -- -D warnings

test:
Expand All @@ -59,7 +59,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: document
- name: Document
run: cargo +nightly doc --all-features

verify_rust_version:
Expand All @@ -71,9 +71,9 @@ jobs:
components: clippy
- name: Install cargo-binstall
uses: cargo-bins/[email protected]
- name: install cargo-msrv
- name: Install cargo-msrv
run: cargo binstall cargo-msrv
- name: verify msrv
- name: Verify msrv
run: cargo msrv verify

coverage:
Expand Down

0 comments on commit f54ab7a

Please sign in to comment.