Skip to content

Commit 852836e

Browse files
authored
Merge branch 'v1.x.x' into test/pact-2.0.1
2 parents e2ae4b2 + 1668622 commit 852836e

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: golangci-lint
22
on:
33
push:
44
tags:
5-
- v*
5+
- v2*
66
branches:
77
- master
88
- main
@@ -11,25 +11,28 @@ jobs:
1111
golangci:
1212
name: lint
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
go-version: [
1617
1.17.x,
17-
# 1.18.x
18+
1.18.x,
19+
1.19.x
1820
]
1921
os: [ubuntu-latest]
2022
runs-on: ${{ matrix.os }}
2123
steps:
24+
- name: Checkout code
25+
uses: actions/checkout@v3
2226
- name: Install Go
2327
uses: actions/setup-go@v4
2428
with:
2529
go-version: ${{ matrix.go-version }}
26-
- name: Checkout code
27-
uses: actions/checkout@v3
2830
- name: golangci-lint
2931
uses: golangci/golangci-lint-action@v3
3032
with:
3133
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
32-
version: v1.29
34+
# version: v1.29
35+
version: v1.53
3336

3437
# Optional: working directory, useful for monorepos
3538
# working-directory: somedir

0 commit comments

Comments
 (0)