Skip to content

Commit 3af310a

Browse files
committed
chore: simplify test workflow job names
1 parent 027b352 commit 3af310a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test-integration:
10-
name: Run Integration Tests
10+
name: Integration
1111
runs-on: ubuntu-latest
1212

1313
steps:
@@ -47,7 +47,7 @@ jobs:
4747
- name: Download dependencies
4848
run: go mod download
4949

50-
- name: Run integration tests
50+
- name: Integration tests
5151
run: make test-integration
5252

5353
- name: Upload test results
@@ -61,7 +61,7 @@ jobs:
6161
retention-days: 7
6262

6363
unit-test:
64-
name: Run Unit Tests
64+
name: Unit
6565
runs-on: ubuntu-latest
6666

6767
steps:
@@ -78,7 +78,7 @@ jobs:
7878
- name: Download dependencies
7979
run: go mod download
8080

81-
- name: Run unit tests
81+
- name: Unit tests
8282
run: make test-unit
8383

8484
- name: Upload test results
@@ -92,7 +92,7 @@ jobs:
9292
retention-days: 7
9393

9494
go-vet:
95-
name: Run Go Vet
95+
name: Go Vet
9696
runs-on: ubuntu-latest
9797

9898
steps:
@@ -109,5 +109,5 @@ jobs:
109109
- name: Download dependencies
110110
run: go mod download
111111

112-
- name: Run go vet
112+
- name: Go vet
113113
run: go vet ./...

0 commit comments

Comments
 (0)