Skip to content

Add arm64 runners

Add arm64 runners #54

Workflow file for this run

name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the develop branch
on:
pull_request:
push:
branches: [develop]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- [self-hosted, linux-arm64]
- macos-latest
- [self-hosted, macos, arm64]
- windows-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: "go.mod"
- name: build
run: go build -v ./...
- name: go test
run: go test -v ./...