Skip to content

Commit 5b7634d

Browse files
committed
Rename linters workflow
1 parent 3af310a commit 5b7634d

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/linters.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
name: linters
1+
name: Linters
22
on:
33
pull_request:
44
permissions:
55
contents: read
66
jobs:
77
lint-actions:
8+
name: Lint Actions
89
runs-on: ubuntu-latest
910
steps:
1011
- uses: actions/checkout@v4
@@ -16,13 +17,14 @@ jobs:
1617
go-version-file: 'go.mod'
1718
check-latest: true
1819

19-
- name: lint actions
20+
- name: Lint actions
2021
run: |
2122
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
2223
make lint-actions
2324
shell: bash
2425

2526
fmt-imports:
27+
name: Fmt Imports
2628
runs-on: ubuntu-latest
2729
steps:
2830
- uses: actions/checkout@v4
@@ -34,11 +36,11 @@ jobs:
3436
go-version-file: 'go.mod'
3537
check-latest: true
3638

37-
- name: format golang import statements
39+
- name: Format golang import statements
3840
run: |
3941
make fmt-imports
4042
41-
- name: check-is-dirty
43+
- name: Check is dirty
4244
run: |
4345
if [[ -n $(git status --porcelain) ]]; then
4446
echo "Detected uncommitted changes."
@@ -48,6 +50,7 @@ jobs:
4850
fi
4951
5052
golangci:
53+
name: GolangCI
5154
runs-on: ubuntu-latest
5255
steps:
5356
- uses: actions/checkout@v4
@@ -59,11 +62,11 @@ jobs:
5962
go-version-file: 'go.mod'
6063
check-latest: true
6164

62-
- name: lint code
65+
- name: Lint code
6366
run: |
6467
make GOLANGCI_LINT_FIX=false GOLANGCI_LINT_BASE_REV=HEAD~ lint-code
6568
66-
- name: check-is-dirty
69+
- name: Check is dirty
6770
run: |
6871
if [[ -n $(git status --porcelain) ]]; then
6972
echo "Detected uncommitted changes."

0 commit comments

Comments
 (0)