Skip to content

Merge pull request #31 from envato/ensure-tidy #66

Merge pull request #31 from envato/ensure-tidy

Merge pull request #31 from envato/ensure-tidy #66

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Check tidy
run: go mod tidy && git diff --quiet go.mod go.sum
- name: Build
run: make clean release
- name: Test
run: go test -v ./...