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:
|
2024-09-24 06:12:40 +00:00
|
|
|
GO_VERSION: "1.22.7"
|
2021-08-03 14:10:50 +00:00
|
|
|
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
|
2023-04-05 10:02:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-12-21 11:10:02 +00:00
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2024-01-06 09:12:57 +00:00
|
|
|
uses: actions/setup-go@v5
|
2020-12-21 11:10:02 +00:00
|
|
|
with:
|
2022-10-03 05:52:06 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Checkout code
|
2023-12-04 12:18:41 +00:00
|
|
|
uses: actions/checkout@v4
|
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
|
2024-10-25 04:05:00 +00:00
|
|
|
uses: golangci/golangci-lint-action@v6
|
2022-04-05 13:25:45 +00:00
|
|
|
with:
|
2024-05-20 10:47:15 +00:00
|
|
|
version: v1.57.2
|
2022-04-05 13:25:45 +00:00
|
|
|
args: --verbose
|
2021-10-28 09:44:20 +00:00
|
|
|
unit:
|
|
|
|
name: Unit tests
|
2023-04-05 10:02:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-28 09:44:20 +00:00
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2024-01-06 09:12:57 +00:00
|
|
|
uses: actions/setup-go@v5
|
2021-10-28 09:44:20 +00:00
|
|
|
with:
|
2022-10-03 05:52:06 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2021-10-28 09:44:20 +00:00
|
|
|
- name: Checkout code
|
2023-12-04 12:18:41 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Run unit tests
|
|
|
|
run: make tests
|
|
|
|
- name: Upload code coverage
|
2024-02-19 07:31:45 +00:00
|
|
|
uses: codecov/codecov-action@v4
|
2020-12-21 11:10:02 +00:00
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|
2021-10-28 09:44:20 +00:00
|
|
|
e2e:
|
|
|
|
name: E2e tests
|
2023-04-05 10:02:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-28 09:44:20 +00:00
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2024-01-06 09:12:57 +00:00
|
|
|
uses: actions/setup-go@v5
|
2021-10-28 09:44:20 +00:00
|
|
|
with:
|
2022-10-03 05:52:06 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2021-10-28 09:44:20 +00:00
|
|
|
- name: Checkout code
|
2023-12-04 12:18:41 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-08-03 14:10:50 +00:00
|
|
|
- name: Setup Kubernetes cluster (KIND)
|
2024-11-06 04:15:05 +00:00
|
|
|
uses: engineerd/setup-kind@v0.6.2
|
2021-08-03 14:10:50 +00:00
|
|
|
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
|
2023-04-05 10:02:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-28 09:44:20 +00:00
|
|
|
needs: [e2e, unit]
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2024-01-06 09:12:57 +00:00
|
|
|
uses: actions/setup-go@v5
|
2021-10-28 09:44:20 +00:00
|
|
|
with:
|
2022-10-03 05:52:06 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2021-10-28 09:44:20 +00:00
|
|
|
- name: Checkout code
|
2023-12-04 12:18:41 +00:00
|
|
|
uses: actions/checkout@v4
|
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
|
2024-06-29 12:53:49 +00:00
|
|
|
uses: goreleaser/goreleaser-action@v6
|
2020-12-21 11:10:02 +00:00
|
|
|
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
|