From d7735cdb8ed4e5555cd4533af9269c10d557aed4 Mon Sep 17 00:00:00 2001 From: Colin O'Dell Date: Mon, 25 Nov 2024 12:59:55 -0500 Subject: [PATCH] Go linting requires go --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9724cba..22eb572 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,6 +13,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: '1.23' - run: make lint-go || (echo "::notice Run 'make lint-fix' locally to fix this" && exit 1) - run: make lint-license || (echo "::notice Run 'make lint-fix' locally to fix this" && exit 1)