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:
|
on:
|
||||||
pull_request:
|
pull_request: { }
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
|
@ -31,6 +31,7 @@ jobs:
|
||||||
|
|
||||||
# TODO: Remove once linter job is required
|
# TODO: Remove once linter job is required
|
||||||
fmt-check:
|
fmt-check:
|
||||||
|
name: Formatting
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
@ -48,6 +49,7 @@ jobs:
|
||||||
|
|
||||||
# TODO: Remove once linter job is required
|
# TODO: Remove once linter job is required
|
||||||
vet:
|
vet:
|
||||||
|
name: Vet
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: fmt-check
|
needs: fmt-check
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -66,6 +68,7 @@ jobs:
|
||||||
run: go vet ./...
|
run: go vet ./...
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
name: Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: fmt-check
|
needs: fmt-check
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue