-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consistent capitalization in sub-job names
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- name: format | ||
- name: Format | ||
run: cargo fmt --check | ||
|
||
check: | ||
|
@@ -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: | ||
|
@@ -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: | ||
|
@@ -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: | ||
|