ci: better CI job naming

This commit is contained in:
Jon Seager 2026-02-06 19:03:07 +00:00
parent 8a669f70d2
commit 2fff8e8124
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ jobs:
run: nix develop -c cargo clippy run: nix develop -c cargo clippy
test: test:
name: Run Tests name: Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out code into the Go module directory - name: Check out code into the Go module directory
@ -55,7 +55,7 @@ jobs:
nix develop --command cargo test -- --show-output nix develop --command cargo test -- --show-output
deploy: deploy:
name: Deploy to Fly.io name: Deploy
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: needs:
- lint - lint

View file

@ -29,11 +29,11 @@ jobs:
- name: Check formatting - name: Check formatting
run: nix develop -c cargo fmt --check run: nix develop -c cargo fmt --check
- name: Clippy - name: Run clippy
run: nix develop -c cargo clippy run: nix develop -c cargo clippy
test: test:
name: Run Tests name: Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out code into the Go module directory - name: Check out code into the Go module directory