We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3b07a commit d3aaf67Copy full SHA for d3aaf67
1 file changed
.github/workflows/basictests.yml
@@ -25,6 +25,13 @@ jobs:
25
gofmt -s -l $(find . -name "*.go" -type f)
26
exit 1
27
fi
28
+ - name: Unconvert lint
29
+ run: |
30
+ if [ "$(go tool unconvert ./... | wc -l)" -gt 0 ]; then
31
+ echo "Unnecessary type conversions found. Please run 'make unconvert' and commit changes."
32
+ go tool unconvert ./...
33
+ exit 1
34
+ fi
35
- name: Test
36
run: |
37
go build -tags appengine
0 commit comments