Skip to content

Fix function cloning Darwin/arm64 #9

Fix function cloning Darwin/arm64

Fix function cloning Darwin/arm64 #9

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test Darwin (go ${{ matrix.go }}, ${{ matrix.host }})
runs-on: ${{ matrix.host }}
timeout-minutes: 10
strategy:
matrix:
go: ['1.26']
host: ['macos-latest']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
- name: Run tests
run: |
go test -run 'TestFunc$'
#- name: Run tests (buildmode=exe)
# run: |
# go test -buildmode=exe ./...
#- name: Run tests (buildmode=pie)
# run: |
# go test -buildmode=pie ./...