We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51c5627 commit 3fa479dCopy full SHA for 3fa479d
.github/workflows/build.yaml
@@ -7,17 +7,7 @@ on:
7
- master
8
9
jobs:
10
- go-linter:
11
- name: Go Linter
12
- runs-on: ubuntu-latest
13
- steps:
14
- - uses: actions/checkout@v3
15
- - uses: golangci/golangci-lint-action@v2
16
- with:
17
- version: v1.52.0
18
- args: --timeout=5m
19
-
20
- run-tests:
+ lint-and-tests:
21
name: Run Tests
22
runs-on: ubuntu-latest
23
steps:
@@ -26,6 +16,8 @@ jobs:
26
uses: actions/setup-go@v3
27
with:
28
go-version: "^1.20.1"
+ - name: lint
+ run: make lint
29
- name: Run unit tests
30
run: make test
31
- name: Run integration tests
@@ -34,7 +26,7 @@ jobs:
34
create-release:
35
name: Create Release
36
if: ${{ github.ref == 'refs/heads/master' }}
37
- needs: [run-tests, go-linter]
+ needs: [lint-and-tests]
38
39
40
32
- uses: actions/checkout@v3
0 commit comments