Files
dolt/.github/workflows/ci-go-tests.yaml
T
2021-03-08 14:52:41 -08:00

27 lines
505 B
YAML

name: Test Go
on:
pull_request:
branches: [ master ]
paths:
- 'go/**'
jobs:
test:
name: Go tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-10.15, ubuntu-18.04, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
id: go
- uses: actions/checkout@v2
- name: Test All
working-directory: ./go
run: go test -timeout 30m -race ./...