-
-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Give human-readable names to CI jobs (#524)
# Objective - Give human-readable names to jobs in CI. # Solution - Update ci.yml
- Loading branch information
Showing
1 changed file
with
9 additions
and
4 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ env: | |
|
||
jobs: | ||
valence-fmt: | ||
name: Formatting | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
|
@@ -30,6 +31,7 @@ jobs: | |
run: cargo fmt --all -- --check | ||
|
||
valence-docs: | ||
name: Documentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
|
@@ -48,6 +50,7 @@ jobs: | |
run: RUSTDOCFLAGS="-D warnings" cargo doc --workspace --no-deps --all-features --document-private-items | ||
|
||
typos: | ||
name: Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
|
@@ -57,6 +60,7 @@ jobs: | |
uses: crate-ci/[email protected] | ||
|
||
valence-clippy: | ||
name: Clippy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
|
@@ -88,9 +92,8 @@ jobs: | |
include: | ||
- style: default | ||
flags: "" | ||
|
||
name: Tests (${{ matrix.platform }}) | ||
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v3 | ||
|
@@ -114,7 +117,8 @@ jobs: | |
- name: Run valence_nbt tests without preserve_order feature | ||
run: cargo test -p valence_nbt --all-targets | ||
|
||
extractor-tests: | ||
extractor-build: | ||
name: Build Extractor | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
|
@@ -131,6 +135,7 @@ jobs: | |
working-directory: extractor | ||
|
||
check-depgraph: | ||
name: Dependency Graph (assets/depgraph.svg) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
|
@@ -184,7 +189,7 @@ jobs: | |
name: bad-depgraph | ||
path: bad-depgraph/ | ||
udeps: | ||
name: Check for unused dependencies | ||
name: Unused Dependencies | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
|