dnscontrol/.github/workflows/build.yml

26 lines
413 B
YAML
Raw Normal View History

name: build
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.15
- name: Run unit tests
run: go test ./...
- name: Build binaries
run: go run build/build.go