Skip to content

Commit

Permalink
fixup! Add names to jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
DelSkayn committed Jan 30, 2024
1 parent a1ed944 commit 54caa4d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:

jobs:
format:
name: "Format"
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -34,7 +34,7 @@ jobs:
run: cargo fmt --all -- --check

doc:
name: "Documentation"
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
target/doc/rquickjs-sys
target/doc/rquickjs-macro
check:
name: "Clippy check"
name: Clippy check
runs-on: ubuntu-latest
permissions:
checks: write
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
run: cargo clippy --all --all-targets --features full-async

msrv:
name: "Minimal rust version"
name: Minimal rust version
# Check to see if rquickjs builds on minimal supported Rust version.
runs-on: ubuntu-latest
# we use a matrix here just because env can't be used in job names
Expand All @@ -119,7 +119,7 @@ jobs:
run: cargo check

coverage:
name: "Test + Converage"
name: Test + Converage
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@v1
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
retention-days: 5

test:
name: "Platform tests"
name: Platform tests
needs:
- format
- doc
Expand Down Expand Up @@ -427,7 +427,7 @@ jobs:
results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: All platform test results
name: Platform test results
needs: [test]
steps:
- run: exit 1
Expand All @@ -438,6 +438,7 @@ jobs:
}}
update-bindings:
name: Update bindings
if: ${{ github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/') }}
needs:
- test
Expand Down

0 comments on commit 54caa4d

Please sign in to comment.