Skip to content

Commit

Permalink
run tests after linting to avoid cache issues
Browse files Browse the repository at this point in the history
  • Loading branch information
markusressel committed Mar 20, 2023
1 parent 2926ab4 commit 5e64f3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ jobs:
with:
go-version: '^1.18'

- name: Test
run: make test

- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.4.0
with:
Expand All @@ -48,11 +45,14 @@ jobs:
# skip-cache: true

# Optional: if set to true then the action don't cache or restore ~/go/pkg.
skip-pkg-cache: true
skip-pkg-cache: false

# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
# skip-build-cache: true

- name: Test
run: make test

- name: Build
run: make build

Expand Down

0 comments on commit 5e64f3b

Please sign in to comment.