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"
|
2021-08-03 14:10:50 +00:00
|
|
|
env:
|
|
|
|
GO_VERSION: "1.16"
|
|
|
|
KIND_VERSION: "v0.11.1"
|
|
|
|
KIND_IMAGE: "kindest/node:v1.21.1@sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6"
|
|
|
|
|
2020-12-21 11:10:02 +00:00
|
|
|
jobs:
|
2021-10-28 09:44:20 +00:00
|
|
|
lint:
|
|
|
|
name: Lint
|
2020-12-21 11:10:02 +00:00
|
|
|
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
|
2022-03-08 09:22:17 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: yaml-lint
|
|
|
|
uses: ibiqlik/action-yamllint@v3
|
2022-04-05 13:25:45 +00:00
|
|
|
- name: Setup golangci-lint
|
2022-04-12 09:40:44 +00:00
|
|
|
uses: golangci/golangci-lint-action@v3
|
2022-04-05 13:25:45 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
args: --verbose
|
2021-10-28 09:44:20 +00:00
|
|
|
unit:
|
|
|
|
name: Unit tests
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
|
|
|
- name: Checkout code
|
2022-03-08 09:22:17 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Run unit tests
|
|
|
|
run: make tests
|
|
|
|
- name: Upload code coverage
|
2021-08-04 08:38:18 +00:00
|
|
|
uses: codecov/codecov-action@v2
|
2020-12-21 11:10:02 +00:00
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|
2021-10-28 09:44:20 +00:00
|
|
|
e2e:
|
|
|
|
name: E2e tests
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
|
|
|
- name: Checkout code
|
2022-03-08 09:22:17 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-08-03 14:10:50 +00:00
|
|
|
- name: Setup Kubernetes cluster (KIND)
|
|
|
|
uses: engineerd/setup-kind@v0.5.0
|
|
|
|
with:
|
|
|
|
version: ${{ env.KIND_VERSION }}
|
|
|
|
image: ${{ env.KIND_IMAGE }}
|
|
|
|
name: kube-bench
|
|
|
|
- name: Test connection to Kubernetes cluster
|
|
|
|
run: |
|
|
|
|
kubectl cluster-info
|
|
|
|
kubectl describe node
|
2020-12-23 10:48:17 +00:00
|
|
|
- name: Run integration tests
|
2021-08-03 14:10:50 +00:00
|
|
|
run: |
|
2021-10-03 08:43:43 +00:00
|
|
|
make integration-test
|
2021-08-03 14:10:50 +00:00
|
|
|
- name: Compare output with expected output
|
|
|
|
uses: GuillaumeFalourd/diff-action@v1
|
|
|
|
with:
|
|
|
|
first_file_path: ./test.data
|
|
|
|
second_file_path: integration/testdata/Expected_output.data
|
|
|
|
expected_result: PASSED
|
2021-10-28 09:44:20 +00:00
|
|
|
release:
|
|
|
|
name: Release snapshot
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
needs: [e2e, unit]
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
|
|
|
- name: Checkout code
|
2022-03-08 09:22:17 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-04-06 05:12:04 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Dry-run release snapshot
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
with:
|
2022-04-06 05:12:04 +00:00
|
|
|
distribution: goreleaser
|
|
|
|
version: v1.7.0
|
2020-12-21 11:10:02 +00:00
|
|
|
args: release --snapshot --skip-publish --rm-dist
|