Skip to content

支持 go1.20 下泛型打桩 #62

支持 go1.20 下泛型打桩

支持 go1.20 下泛型打桩 #62

Workflow file for this run

name: Go
on: [pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
version: [1.18, 1.19, 1.20]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.version }}
uses: actions/setup-go@v1
with:
node-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'