Skip to content

goissue477

goissue477 #22

Workflow file for this run

name: goissue477
on:
workflow_dispatch:
jobs:
macosCheck:
runs-on: drawin-latest
strategy:
matrix:
go: ['1.18']
os: ['drawin']
arch: ['amd64']
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: 'Test on [drawin] arch [amd64]'
if: ${{ matrix.os == 'drawin' && contains(fromJson('["amd64"]'), matrix.arch) }}
env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
run: |
echo ${CGO_ENABLED}
go env CGO_ENABLED