We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eb3b07a + d3aaf67 commit 3def95fCopy full SHA for 3def95f
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