fix nil ptr error on apple m1 chip (#109) #879
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [ push ] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ ubuntu-20.04, macos-11 ] # list of os: https://github.com/actions/virtual-environments | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18.x | |
- uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: go-${{ matrix.os }}-${{ matrix.go }}-${{ hashFiles('**/go.sum') }} | |
- run: GODEBUG=cgocheck=2 make race | |
win: | |
strategy: | |
matrix: | |
os: [ windows-2022 ] # list of os: https://github.com/actions/virtual-environments | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
C:\ProgramData\chocolatey\lib\mingw | |
C:\ProgramData\chocolatey\lib\cmake | |
key: chocolatey-${{ matrix.os }} | |
- name: Install dependencies | |
run: | | |
choco upgrade mingw -y --no-progress --version 11.2.0.07112021 | |
choco install cmake -y --no-progress --version 3.23.1 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~\AppData\Local\go-build | |
~\go\pkg\mod | |
key: go-${{ matrix.os }}-${{ hashFiles('**/go.sum') }} | |
restore-keys: go-${{ matrix.os }}- | |
- run: make test |