Skip to content

Instantly share code, notes, and snippets.

@timraymond
Created November 11, 2020 00:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
A minimal test / build action for Go
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.14
uses: actions/setup-go@v1
with:
go-version: 1.14
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: go test -race -timeout 30s -count 1 -v ./...\
- name: Build
run: go build -v ./cmd/norrisd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment