diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index fd5eb8e..83a7675 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,15 +14,17 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: '1.23' + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '1.23' - - name: Build - run: go build -v ./... + - name: Lint + uses: golangci/golangci-lint-action@v6 + with: + version: 'v1.60' - - name: Test - run: go test -v ./... + - name: Test + run: go test -v ./...