We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c5c624 commit 878e016Copy full SHA for 878e016
1 file changed
.github/workflows/test.yaml
@@ -29,7 +29,7 @@ jobs:
29
with:
30
go-version: ${{ needs.get-go-version.outputs.go-version }}
31
- name: Check formatting
32
- run: 'exit $(( $(gofmt -s -l . | wc -l) != 0 ))'
+ run: "exit $(( $(gofmt -s -l . | wc -l) != 0 ))"
33
34
test:
35
name: codec test
@@ -44,6 +44,8 @@ jobs:
44
45
- name: Run golangci-lint
46
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5
47
+ with:
48
+ version: v2.5.0
49
- run: go test -v ./codec
50
- run: go test -tags codecgen.exec -v ./codec
51
- name: Generate coverage report
0 commit comments