Skip to content

Commit

Permalink
fix linters?
Browse files Browse the repository at this point in the history
  • Loading branch information
marrgancovka committed May 28, 2024
1 parent f706cc5 commit 23c6129
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci_cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ jobs:
with:
go-version: '1.21.x'

- name: Clean go module cache
run: |
rm -rf ~/go/pkg/mod
- name: Cache Go modules
uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: golangci-lint
uses: golangci/golangci-lint-action@v3

Expand Down

0 comments on commit 23c6129

Please sign in to comment.