Skip to content

feat: 修改 getg 在amd64平台上的实现方式 #66

feat: 修改 getg 在amd64平台上的实现方式

feat: 修改 getg 在amd64平台上的实现方式 #66

Workflow file for this run

name: Go
on: [pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: ["1.18", "1.19", "1.20", "1.21"]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Test
run: go test -gcflags='all=-N -l'