gatus/.github/workflows/go.yml

25 lines
402 B
YAML
Raw Normal View History

2019-09-06 06:08:29 +02:00
name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
2019-09-09 03:27:59 +02:00
- name: Set up Go 1.13
2019-09-06 06:08:29 +02:00
uses: actions/setup-go@v1
with:
2019-09-09 03:27:59 +02:00
go-version: 1.13
2019-09-06 06:08:29 +02:00
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Test
2019-09-06 06:15:21 +02:00
run: go test -mod vendor ./...
2019-09-06 06:08:29 +02:00
- name: Build
run: go build -mod vendor