From 9ee474299e1301095045d662ab40766604b89285 Mon Sep 17 00:00:00 2001 From: Atze de Vries Date: Mon, 26 Jan 2026 13:23:12 +0100 Subject: [PATCH] test: run go test/lint in one setp Signed-off-by: Atze de Vries --- .github/workflows/reusable-goapp.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/reusable-goapp.yaml b/.github/workflows/reusable-goapp.yaml index e7c439a8..368dc69d 100644 --- a/.github/workflows/reusable-goapp.yaml +++ b/.github/workflows/reusable-goapp.yaml @@ -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"