Skip to content

Use GH runner for arm (#46) #64

Use GH runner for arm (#46)

Use GH runner for arm (#46) #64

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-22.04
- ubuntu-latest-arm-8-cores
- macos-13
- [self-hosted, macos, arm64]
- windows-2022
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 ./...