We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 416e80a commit f0aa63dCopy full SHA for f0aa63d
.github/workflows/ci.yml
@@ -22,13 +22,10 @@ jobs:
22
uses: actions/setup-go@v5
23
with:
24
go-version: ${{ env.GO_VERSION }}
25
-
26
- - name: Install golangci-lint
27
- run: |
28
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.3.1
29
30
- - name: Run lint (includes formatting)
31
- run: make lint
+ - name: Run golangci-lint
+ uses: golangci/golangci-lint-action@v8
+ with:
+ version: v2.3.1
32
33
# Schema and Example Validation
34
validate:
0 commit comments