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 5ecf3b9
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 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,13 +56,10 @@ 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
needs: build

runs-on: ubuntu-latest

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

coverage:
name: Coverage

needs: build

runs-on: ubuntu-latest

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

0 comments on commit 5ecf3b9

Please sign in to comment.