apg-go/.github/workflows/go.yml
2021-04-17 11:09:04 +02:00

26 lines
388 B
YAML

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
env:
GO111MODULE: auto
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Build
run: go build -o apg -v .
- name: Test
run: go test -v .