Skip to content

build(goreleaser): arm64 = aarch64 on linux #124

build(goreleaser): arm64 = aarch64 on linux

build(goreleaser): arm64 = aarch64 on linux #124

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
golang: ["oldstable", "stable"]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ matrix.golang }}"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...