feat(linters): Added job names
This commit is contained in:
parent
35670d5a58
commit
d69ef653df
1 changed files with 5 additions and 2 deletions
7
.github/workflows/pr.yml
vendored
7
.github/workflows/pr.yml
vendored
|
|
@ -1,7 +1,7 @@
|
|||
name: pr-check
|
||||
name: PR
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
pull_request: { }
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
@ -31,6 +31,7 @@ jobs:
|
|||
|
||||
# TODO: Remove once linter job is required
|
||||
fmt-check:
|
||||
name: Formatting
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
@ -48,6 +49,7 @@ jobs:
|
|||
|
||||
# TODO: Remove once linter job is required
|
||||
vet:
|
||||
name: Vet
|
||||
runs-on: ubuntu-latest
|
||||
needs: fmt-check
|
||||
steps:
|
||||
|
|
@ -66,6 +68,7 @@ jobs:
|
|||
run: go vet ./...
|
||||
|
||||
test:
|
||||
name: Tests
|
||||
runs-on: ubuntu-latest
|
||||
needs: fmt-check
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue