compose/.github/workflows/ci.yml

31 lines
514 B
YAML
Raw Normal View History

2020-04-30 17:37:41 +02:00
name: Continuous integration
on:
push:
2020-04-30 17:41:59 +02:00
branches: [master]
2020-04-30 17:37:41 +02:00
pull_request:
2020-04-30 17:41:59 +02:00
branches: [master]
2020-04-30 17:37:41 +02:00
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
2020-05-04 23:50:00 +02:00
- name: Set up Go 1.14
2020-04-30 17:41:59 +02:00
uses: actions/setup-go@v1
with:
2020-05-04 23:50:00 +02:00
go-version: 1.14
2020-04-30 17:41:59 +02:00
id: go
- name: Checkout code into the Go module directory
uses: actions/checkout@v2
2020-05-04 23:50:00 +02:00
- name: Lint
run: make lint
2020-04-30 17:37:41 +02:00
2020-04-30 17:41:59 +02:00
- name: Build
run: make cli
2020-04-30 17:37:41 +02:00
2020-04-30 17:41:59 +02:00
- name: Test
run: make test