Skip to content

Commit 46bf236

Browse files
committed
Simplify GitHub workflow job names
Remove redundant "Tests" suffix from job names: - "Unit Tests" -> "Unit" - "Integration Tests" -> "Integration" This makes the job names more concise while maintaining clarity.
1 parent c603600 commit 46bf236

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
include:
16-
- job-name: "Unit Tests"
16+
- job-name: "Unit"
1717
make-target: "test-unit"
1818
artifact-name: "unit-test-results"
1919
- job-name: "Go Vet"
@@ -54,7 +54,7 @@ jobs:
5454

5555
# Integration tests need special setup, keep separate
5656
test-integration:
57-
name: Integration Tests
57+
name: Integration
5858
runs-on: ubuntu-latest
5959

6060
steps:

0 commit comments

Comments
 (0)