Skip to content

Commit

Permalink
check dependencies in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jandelgado committed Oct 13, 2024
1 parent 9c8a341 commit a727adf
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ env:

name: run tests
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

lint:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit a727adf

Please sign in to comment.