Merge pull request #69 from gmlewis/i68-oneof-ref #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Go | |
on: [push, pull_request] | |
jobs: | |
lint-test-build: | |
name: Lint, Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.16.2' | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
env: | |
GOPROXY: https://proxy.golang.org,direct | |
run: go mod download | |
- name: Test | |
run: go test -tags unit -race ./... |