File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,17 @@ jobs:
21
21
go-version : ${{ matrix.go-version }}
22
22
- name : Checkout code
23
23
uses : actions/checkout@v2
24
+ - if : matrix.os == "ubuntu-latest"
25
+ name : golangci-lint
26
+ uses : golangci/golangci-lint-action@v2
27
+ with :
28
+ # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
29
+ version : v1.29
24
30
- name : Run unit tests
25
31
run : make test
26
32
- name : Build collector
27
33
run : make build
28
- - if : ${{ matrix.os}} != "windows-latest"
34
+ - if : matrix.os != "windows-latest"
29
35
name : Launch collector for E2E tests
30
36
run : ./collector --config ./_tests/e2e/test-config.yml &
31
37
- if : ${{ matrix.os}} != "windows-latest"
You can’t perform that action at this time.
0 commit comments