Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/reusable-goapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,9 @@ jobs:
- name: Download Go modules
if: ${{ steps.has-multiple-cmds.outputs.outcome == '1' }}
run: "go tool mage -v go:downloadModules"
- name: Run Go Lint
- name: Run Go Validate
if: ${{ steps.has-multiple-cmds.outputs.outcome == '1' }}
run: "go tool mage -v go:lint"
- name: Run Go Test
if: ${{ steps.has-multiple-cmds.outputs.outcome == '1' }}
run: "go tool mage -v go:test"
run: "go tool mage -v go:validate"
- name: Run Go Build
if: ${{ steps.has-multiple-cmds.outputs.outcome == '1' }}
run: "go tool mage -v go:buildBinaries"
Expand Down
Loading