Skip to content

Commit

Permalink
Merge pull request #1534 from facchettos/lint-fix
Browse files Browse the repository at this point in the history
trying a temporary fix for the CI failurs
  • Loading branch information
FabianKramm authored Feb 12, 2024
2 parents d046a94 + dd6ddf5 commit 22041b4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- main
paths:
- "**.go"
- ".github/workflows/lint.yaml"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -18,15 +19,19 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: "1.21"
cache: false
- uses: actions/checkout@v4
- name: Generate Embedded Helm Charts
run: |
go generate ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: -v --config=.golangci.yml
args: -v --config=.golangci.yml --whole-files
only-new-issues: true

0 comments on commit 22041b4

Please sign in to comment.