mirror of
https://github.com/grdl/git-get.git
synced 2026-02-04 17:24:49 +00:00
This allows Go to build a native binary for Apple Silicon. GoReleaser is used to build and release this project, GoReleaser v0.157.0 released on 2021-02-17 will build a fitting binary automatically as long as Go 1.16 is used. A bump of the Go version should be everything that's needed to get this working natively on Apple Silicon.
21 lines
461 B
YAML
21 lines
461 B
YAML
name: build
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.16
|
|
- name: Set up Git
|
|
run: git config --global user.email "grdl@example.com" && git config --global user.name "grdl"
|
|
- name: Run go test
|
|
run: CGO_ENABLED=0 GOOS=linux go test ./... -v
|