mirror of
https://github.com/ii64/sonic.git
synced 2026-06-21 00:46:43 +08:00
* fix:(loader) init `_Moduledata.gcdata`pointer to avoid panic on plugin-mode * fix: freeze gcdata pointer * feat: go115 * update test * fix: use unique bytes pointer * test: drop go1.15 race test * feat: support go1.18
24 lines
561 B
YAML
24 lines
561 B
YAML
name: Push Check Go1.16
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.16
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Unit Test
|
|
run: GOMAXPROCS=4 go test -v -gcflags=-d=checkptr=0 -race -covermode=atomic -coverprofile=coverage.out ./...
|