Skip to content

Instantly share code, notes, and snippets.

@timraymond
Created November 11, 2020 00:39
Show Gist options
  • Save timraymond/f41177fc8f12ed229332ed9283865729 to your computer and use it in GitHub Desktop.
Save timraymond/f41177fc8f12ed229332ed9283865729 to your computer and use it in GitHub Desktop.
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