Skip to content

Commit

Permalink
Clearer CI job names
Browse files Browse the repository at this point in the history
  • Loading branch information
Xithrius committed Oct 29, 2023
1 parent e068938 commit a0a0d91
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ env:
CARGO_TERM_COLOR: always

jobs:
build-test:
build:
name: Build

strategy:
fail-fast: false

Expand Down Expand Up @@ -55,11 +57,8 @@ jobs:
- name: Build
run: cargo build --verbose --target ${{ matrix.target }}

- name: Run tests
run: cargo test --verbose --target ${{ matrix.target }}

lint:
name: Formatter
name: Lint

needs: build-test

Expand All @@ -83,7 +82,12 @@ jobs:
run: cargo clippy -- -D warnings

coverage:
name: Coverage

needs: build-test

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit a0a0d91

Please sign in to comment.