Skip to content

Commit b4f8068

Browse files
removed run_lint, run_style_and_unused from matrix
Signed-off-by: krishnaduttPanchagnula <[email protected]>
1 parent 88915f2 commit b4f8068

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/Circle-ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
strategy:
1616
matrix:
1717
go_version: ["1.18", "1.19", "1.20"]
18-
run_lint: [true, true, true]
19-
run_style_and_unused: [false, false, true]
2018

2119
steps:
2220
- name: Checkout code
@@ -40,9 +38,9 @@ jobs:
4038
CI: true
4139

4240
- name: Run lint
43-
if: ${{ matrix.run_lint == true && startsWith(matrix.go_version, '1.') }}
41+
if: ${{ matrix.go_version == '1.18' || matrix.go_version == '1.19' }}
4442
run: make lint
4543

4644
- name: Run style and unused
47-
if: ${{ matrix.run_style_and_unused == true && matrix.go_version == '1.20' }}
45+
if: ${{ matrix.go_version == '1.20' }}
4846
run: make style unused

0 commit comments

Comments
 (0)