Skip to content

Update Bazel Go (#79) #248

Update Bazel Go (#79)

Update Bazel Go (#79) #248

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Check tidy go modules
run: |-
make fmt tidy license
[ -z "$(git status --porcelain)" ] ||
(echo "git status shows difference after make commands" && exit 1)
- name: Lint, Build, and Test
run: make lint vet license-check build test