2021-02-23 14:04:45 +00:00
|
|
|
---
|
2020-12-21 11:10:02 +00:00
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
|
|
|
- "LICENSE"
|
|
|
|
- "NOTICE"
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
|
|
|
- "LICENSE"
|
|
|
|
- "NOTICE"
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2021-05-02 09:47:30 +00:00
|
|
|
uses: actions/setup-go@v2
|
2020-12-21 11:10:02 +00:00
|
|
|
with:
|
2021-05-02 09:47:30 +00:00
|
|
|
go-version: 1.16
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: yaml-lint
|
|
|
|
uses: ibiqlik/action-yamllint@v3
|
|
|
|
- name: Run unit tests
|
|
|
|
run: make tests
|
|
|
|
- name: Upload code coverage
|
|
|
|
uses: codecov/codecov-action@v1
|
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|
2020-12-23 10:48:17 +00:00
|
|
|
- name: Run integration tests
|
|
|
|
run: make integration-tests
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Dry-run release snapshot
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
with:
|
2021-06-09 12:34:39 +00:00
|
|
|
version: v0.169.0
|
2020-12-21 11:10:02 +00:00
|
|
|
args: release --snapshot --skip-publish --rm-dist
|