ci: better CI job naming
This commit is contained in:
parent
8a669f70d2
commit
2fff8e8124
2 changed files with 4 additions and 4 deletions
4
.github/workflows/deploy.yml
vendored
4
.github/workflows/deploy.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
4
.github/workflows/push.yml
vendored
4
.github/workflows/push.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue