Go tests #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: { go-version: 1.x } | |
- uses: actions/checkout@v3 | |
- run: go test -race ./... | |
- run: go test -tags purego ./... | |
- run: GOARCH=arm64 go test -c | |
- run: GOARCH=ppc64le go test -c | |
- run: GOARCH=s390x go test -c | |
- run: GOARCH=arm go test -c |