We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88915f2 commit b4f8068Copy full SHA for b4f8068
.github/workflows/Circle-ci.yml
@@ -15,8 +15,6 @@ jobs:
15
strategy:
16
matrix:
17
go_version: ["1.18", "1.19", "1.20"]
18
- run_lint: [true, true, true]
19
- run_style_and_unused: [false, false, true]
20
21
steps:
22
- name: Checkout code
@@ -40,9 +38,9 @@ jobs:
40
38
CI: true
41
39
42
- name: Run lint
43
- if: ${{ matrix.run_lint == true && startsWith(matrix.go_version, '1.') }}
+ if: ${{ matrix.go_version == '1.18' || matrix.go_version == '1.19' }}
44
run: make lint
45
46
- name: Run style and unused
47
- if: ${{ matrix.run_style_and_unused == true && matrix.go_version == '1.20' }}
+ if: ${{ matrix.go_version == '1.20' }}
48
run: make style unused
0 commit comments