From c5a5811f7108cde97c466eaa8e7a9a09e89718bd Mon Sep 17 00:00:00 2001 From: Travis Ralston <travpc@gmail.com> Date: Sat, 19 Aug 2023 20:11:12 -0600 Subject: [PATCH] Slight change in order to GHA --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 51832014..b84692cf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,9 +19,9 @@ jobs: - uses: actions/setup-go@v4 with: go-version: '1.20' + - name: "Install staticcheck" + run: 'go install honnef.co/go/tools/cmd/staticcheck@latest' - run: 'go vet ./...' - - run: 'go install honnef.co/go/tools/cmd/staticcheck@latest' - name: "Install staticcheck" - run: 'staticcheck ./...' test: name: 'Go Test (1.20)' -- GitLab