Merge pull request #273 from visualfc/gopctx #46
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: Go1.21 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
macos: | |
name: Test Go1.21 for macOS | |
runs-on: macos-13 | |
steps: | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Build | |
run: go build -v . | |
- name: Install igop | |
run: go install -v ./cmd/igop | |
- name: Go Test | |
run: GOARCH=amd64 go test -race -v . | |
- name: Test $GOROOT/test | |
run: GOARCH=amd64 go run ./cmd/igoptest | |
linux: | |
name: Test Go1.21 for Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Build | |
run: go build -v . | |
- name: Install igop | |
run: go install -v ./cmd/igop | |
- name: Go Test amd64 | |
run: GOARCH=amd64 go test -race -v . | |
- name: Test $GOROOT/test | |
run: GOARCH=amd64 go run ./cmd/igoptest | |
windows: | |
name: Test Go1.21 for Windows | |
runs-on: windows-latest | |
steps: | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Build | |
run: go build -v . | |
- name: Install igop | |
run: go install -v ./cmd/igop | |
- name: Go Test amd64 | |
run: | | |
set GOARCH=amd64 | |
go test -race -v . | |
- name: Test $GOROOT/test amd64 | |
run: | | |
set GOARCH=amd64 | |
go run ./cmd/igoptest | |
- name: Go Test 386 | |
run: | | |
set GOARCH=386 | |
go test -v . | |
- name: Go $GOROOT/test 386 | |
run: | | |
set GOARCH=386 | |
go run ./cmd/igoptest |