From a0df204378e3c33b1ad9bca44ff4ee7f56d598d0 Mon Sep 17 00:00:00 2001 From: Brandon Fulljames Date: Fri, 3 May 2024 10:09:08 +0900 Subject: [PATCH] Experiment --- .github/workflows/lint.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0b10b3e..70517d7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,10 +13,12 @@ jobs: name: lint runs-on: ubuntu-latest steps: + - name: Install Go + uses: actions/setup-go@v4 + with: + go-version: 1.21.4 - name: Checkout code uses: actions/checkout@v4 - name: Lint - run: | - go mod tidy - make lint + run: make lint