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 c835c8c
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
CARGO_TERM_COLOR: always

jobs:
build-test:
build:
strategy:
fail-fast: false

Expand All @@ -25,6 +25,7 @@ jobs:
target: x86_64-apple-darwin

name: Build & Test (${{ matrix.target }})

runs-on: ${{ matrix.os }}

env:
Expand Down Expand Up @@ -55,11 +56,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 +81,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 c835c8c

Please sign in to comment.