fix: gh release create doesn't like tags as targets needs full commit… #682
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: ARM tests | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: [self-hosted, Linux, ARM64] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.x | |
check-latest: true | |
- name: Run tests | |
run: | | |
set -x | |
go version | |
go env | |
export GOMAXPROCS=2 | |
export CGO_ENABLED=1 | |
go test -p 2 -race -timeout 800s -count 1 ./... |