Add CI github action for testing on push and PR

Signed-off-by: Kathryn Baldauf <kabaldau@microsoft.com>
This commit is contained in:
Kathryn Baldauf
2021-04-21 15:35:36 -07:00
parent e98b56db61
commit 085c1a94ab
2 changed files with 38 additions and 14 deletions
+12
View File
@@ -0,0 +1,12 @@
name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: 'windows-2019'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- run: go test -gcflags=all=-d=checkptr -v ./...