Skip to content

Commit

Permalink
fix: Move generate back to avoid vendor errors (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcbickfo authored Dec 1, 2023
1 parent 1dcd9c7 commit 07e095b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions go/deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ runs:
if: ${{ hashFiles('buf.gen.yaml') != '' }}
run: buf generate
shell: bash
- name: Run go generate
run: go generate ./...
shell: bash
- name: Setting up private modules access
if: steps.vendor-cache.outputs.cache-hit != 'true'
shell: bash
Expand All @@ -36,6 +33,9 @@ runs:
go mod tidy
git diff --exit-code -- go.mod go.sum
go mod vendor
- name: Run go generate
run: go generate ./...
shell: bash
- name: Install mockery
if: ${{ hashFiles('.mockery.yml') != '' }}
run: go install github.com/vektra/mockery/v2
Expand Down

0 comments on commit 07e095b

Please sign in to comment.