Skip to content

Commit

Permalink
removed run_lint, run_style_and_unused from matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnaduttPanchagnula committed Jun 7, 2023
1 parent 8ac127f commit 7857341
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/Circle-ci.yml
Expand Up @@ -15,8 +15,6 @@ jobs:
strategy:
matrix:
go_version: ["1.18", "1.19", "1.20"]
run_lint: [true, true, true]
run_style_and_unused: [false, false, true]

steps:
- name: Checkout code
Expand All @@ -40,9 +38,9 @@ jobs:
CI: true

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

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

0 comments on commit 7857341

Please sign in to comment.