Skip to content

Commit 8ca18fc

Browse files
committed
rename golangci job -> sanity to make required check rules happy; re-order checks
1 parent aefb6a2 commit 8ca18fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sanity.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ on:
66
pull_request:
77
workflow_dispatch:
88
jobs:
9-
golangci:
9+
sanity:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v1
1313
- uses: actions/setup-go@v2
1414
with:
1515
go-version: '~1.16'
16+
- name: Run sanity checks
17+
run: make vendor && make diff
1618
- name: Run linting checks
1719
uses: "golangci/golangci-lint-action@v2"
1820
with:
1921
version: "v1.43"
2022
skip-go-installation: true
2123
skip-pkg-cache: true
22-
- name: Run sanity checks
23-
run: make vendor && make diff

0 commit comments

Comments
 (0)