godoc: Warn users that the dst bitmap must be zeroed before #3
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 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... | |
- name: Build for GOAMD64=v3 | |
run: go build -v ./... | |
env: | |
GOAMD64: v3 | |
- name: Build purego | |
run: go build -v -tags purego ./... | |
- name: Build for GOARCH=arm64 | |
run: go build -v ./... | |
env: | |
GOARCH: arm64 |