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