Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jandelgado committed Oct 13, 2024
1 parent a727adf commit f4efc52
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,18 @@ jobs:
check-dependencies:
runs-on: ubuntu-latest
steps:
- name: go mod tidy
run: go mod tidy && git diff --exit-code
- name: go mod download
run: go mod download
- name: go mod verify
run: go mod verify
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v4
- name: go mod tidy
run: go mod tidy && git diff --exit-code
- name: go mod download
run: go mod download
- name: go mod verify
run: go mod verify

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit f4efc52

Please sign in to comment.