Skip to content

Commit

Permalink
Trying to fix the inconsistent vendoring
Browse files Browse the repository at this point in the history
  • Loading branch information
iuga committed Sep 6, 2024
1 parent 257289c commit dd1afee
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,22 @@ jobs:
with:
go-version: '1.23'

- name: Go Tidy
run: go mod tidy && git diff --exit-code

- name: Go Mod
run: go mod download

- name: Go Mod Verify
run: go mod verify

- name: Build
run: go build -v ./...

- name: Lint code
uses: golangci/golangci-lint-action@v6
with:
only-new-issues: true

- name: Build
run: go build -v ./...

- name: Test
run: go test --timeout=10s -v ./...

0 comments on commit dd1afee

Please sign in to comment.