regabi support loong64 #309
Workflow file for this run
This file contains hidden or 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.15 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
linux: | |
name: Test Go1.15 for Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.15 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.15 | |
- 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: Go Test amd64 | |
run: go test -race -v . | |
- name: Go Test 386 | |
run: GOARCH=386 go test -v . | |
windows: | |
name: Test Go1.15 for Windows | |
runs-on: windows-latest | |
steps: | |
- name: Set up Go 1.15 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.15 | |
- 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: Go Test amd64 | |
run: go test -race -v . | |
- name: Go Test 386 | |
run: | | |
set GOARCH=386 | |
go test -v . |