Skip to content

Commit ebdf0d5

Browse files
committed
name
1 parent 528cbc2 commit ebdf0d5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
permissions:
1717
contents: read
1818
jobs:
19-
lint:
19+
Lint:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -32,19 +32,19 @@ jobs:
3232
run: |
3333
sudo apt-get update
3434
sudo apt-get install -y libvirt-dev
35-
- name: lint
35+
- name: Lint
3636
timeout-minutes: 8
3737
env:
3838
TESTSUITE: lint
3939
run: make test
4040
continue-on-error: false
41-
- name: boilerplate check
41+
- name: Boilerplate check
4242
timeout-minutes: 2
4343
env:
4444
TESTSUITE: boilerplate
4545
run: make test
4646
continue-on-error: false
47-
- name: gomod tidy check
47+
- name: Verify gomod tidy
4848
timeout-minutes: 2
4949
continue-on-error: false
5050
run: |

.github/workflows/unit-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
- name: Install make (Windows)
4343
if: runner.os == 'Windows'
4444
run: choco install make -y
45+
# TODO: add gopogh reports for unit tests too
4546
- name: unit test
4647
timeout-minutes: 5
4748
env:

0 commit comments

Comments
 (0)