We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 17328c1 + c93f42c commit a3aa8bdCopy full SHA for a3aa8bd
.github/workflows/go.yml
@@ -65,6 +65,14 @@ jobs:
65
go get honnef.co/go/tools/cmd/staticcheck
66
staticcheck ./...
67
68
+ - name: 'GCAssert'
69
+ # Only run gcassert on the latest versions of Go. Inlining heuristics
70
+ # change from version to version.
71
+ if: ${{ matrix.arch == 'x64' && matrix.go >= '1.17' }}
72
+ run: |
73
+ go get github.com/jordanlewis/gcassert/cmd/gcassert
74
+ gcassert ./...
75
+
76
- name: 'BuildTest for armv7'
77
if: ${{ matrix.arch == 'armv7' }}
78
env:
0 commit comments