2020-04-30 17:37:41 +02:00
|
|
|
name: Continuous integration
|
|
|
|
|
2020-05-14 13:35:55 +02:00
|
|
|
on: [push]
|
|
|
|
|
2020-04-30 17:37:41 +02:00
|
|
|
jobs:
|
2020-05-14 13:35:55 +02:00
|
|
|
lint:
|
|
|
|
name: Lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code into the Go module directory
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Run golangci-lint
|
|
|
|
env:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOROOT: ""
|
|
|
|
uses: actions-contrib/golangci-lint@v1
|
2020-04-30 17:37:41 +02:00
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
2020-05-14 13:35:55 +02:00
|
|
|
env:
|
|
|
|
GO111MODULE: "on"
|
2020-04-30 17:37:41 +02:00
|
|
|
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-14 13:35:55 +02:00
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2020-04-30 17:37:41 +02:00
|
|
|
|
2020-04-30 17:41:59 +02:00
|
|
|
- name: Test
|
2020-05-14 13:35:55 +02:00
|
|
|
run: make -f builder.Makefile test
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: make -f builder.Makefile cli
|
2020-05-04 15:10:28 +02:00
|
|
|
|
|
|
|
- name: E2E Test
|
|
|
|
run: make e2e-local
|