Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Merge pull request #3 from luhring/happy-trails #13

Merge pull request #3 from luhring/happy-trails

Merge pull request #3 from luhring/happy-trails #13

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3.3.0
- name: Check out code onto GOPATH
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
- name: Vet
run: go vet ./...
- name: Build
run: go build -v ./...