Skip to content

Commit

Permalink
Check go.mod & go.sum
Browse files Browse the repository at this point in the history
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
  • Loading branch information
ondrej-fabry committed Oct 24, 2022
1 parent 01e57f2 commit eb3dddd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,14 @@ jobs:
go-version: ${{ matrix.go }}
- name: Checkout
uses: actions/checkout@v3
- name: Check go mod
- name: Run go mod tidy
run: go mod tidy -v
- name: Check go.mod
run: |
go mod tidy
git diff --exit-code go.mod
- name: Check go.sum
run: |
git diff --exit-code go.sum
build-test:
strategy:
Expand Down

0 comments on commit eb3dddd

Please sign in to comment.