2
0
Fork 0
mirror of https://github.com/ii64/sonic.git synced 2026-06-20 16:45:22 +08:00
sonic/.github/workflows/push-check-windows.yml
Yi Duan 6d60889e3b
build: omit checkptr detects on unsafe functions (#372)
* build: omit `checkptr` detect on unsafe functions

* update CI
2023-02-28 19:13:19 +08:00

27 lines
580 B
YAML

name: Push Check Windows-X64
on: pull_request
jobs:
build:
strategy:
matrix:
go-version: [1.15.x, 1.20.x]
runs-on: windows-latest
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: Compatibility Test
run: go test -v .