mirror of
https://github.com/ii64/sonic.git
synced 2026-06-20 16:45:22 +08:00
* fix:move benchmarkTests and unitTests related to external json library * remove extra spaces * merge go.mod files * refactor: add external_jsonlib_test into go.work and CI Co-authored-by: Yi Duan <duanyi.aster@bytedance.com>
30 lines
701 B
YAML
30 lines
701 B
YAML
name: Push Check All
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.15.x, 1.16.x, 1.17.x, 1.19.x]
|
|
runs-on: [self-hosted, X64]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- 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: |
|
|
go test -v -gcflags=-d=checkptr=0 ./...
|
|
cd ./external_jsonlib_test
|
|
go test -v -gcflags=-d=checkptr=0 ./...
|