Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ jobs:
- name: 'GCAssert'
# Only run gcassert on the latest versions of Go. Inlining heuristics
# change from version to version.
# gcassert@7b67d223 uses x/tools v0.17.0, which doesn't support Go 1.24+.
if: ${{ matrix.arch == 'x64' && matrix.go >= '1.22' && matrix.go < '1.24' }}
# gcassert requires go1.22+.
if: ${{ matrix.arch == 'x64' && matrix.go >= '1.22' }}
run: |
go install github.com/jordanlewis/gcassert/cmd/gcassert@7b67d223
go install github.com/jordanlewis/gcassert/cmd/gcassert@ad3fae17aff
gcassert ./...

- name: 'BuildTest for armv7'
Expand Down
Loading