Merge pull request #216 from evanphx/b-fix-tests #151
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: ci | |
on: | |
push: | |
branches: | |
- "v4" | |
pull_request: | |
branches: | |
- "v4" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
go: ["1.19", "1.20", "1.21"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: test | |
run: | | |
go test ./... -v | |
go test ./... -v -race | |
go test ./... -v -tags noasm | |
go test ./... -v -race -tags noasm |