Skip to content

Commit 0452da5

Browse files
committed
Workaround for a golangci-lint-action issue
golangci/golangci-lint-action#703
1 parent 376957a commit 0452da5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,36 +17,48 @@ jobs:
1717
with:
1818
version: v1.54
1919
args: -E gofmt
20+
skip-pkg-cache: true
21+
skip-build-cache: true
2022
- name: golangci-lint on fixtures/basic
2123
uses: golangci/golangci-lint-action@v4
2224
with:
2325
version: v1.54
2426
working-directory: fixtures/basic
2527
args: -E gofmt
28+
skip-pkg-cache: true
29+
skip-build-cache: true
2630
- name: golangci-lint on fixtures/detect_tty
2731
uses: golangci/golangci-lint-action@v4
2832
with:
2933
version: v1.54
3034
working-directory: fixtures/detect_tty
3135
args: -E gofmt
36+
skip-pkg-cache: true
37+
skip-build-cache: true
3238
- name: golangci-lint on fixtures/signals
3339
uses: golangci/golangci-lint-action@v4
3440
with:
3541
version: v1.54
3642
working-directory: fixtures/signals
3743
args: -E gofmt
44+
skip-pkg-cache: true
45+
skip-build-cache: true
3846
- name: golangci-lint on fixtures/timed
3947
uses: golangci/golangci-lint-action@v4
4048
with:
4149
version: v1.54
4250
working-directory: fixtures/timed
4351
args: -E gofmt
52+
skip-pkg-cache: true
53+
skip-build-cache: true
4454
- name: golangci-lint on fixtures/winsize
4555
uses: golangci/golangci-lint-action@v4
4656
with:
4757
version: v1.54
4858
working-directory: fixtures/winsize
4959
args: -E gofmt
60+
skip-pkg-cache: true
61+
skip-build-cache: true
5062

5163
test:
5264
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)