Fix code smells and PR comments #570
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: KinD tests | |
on: | |
push: | |
branches: | |
- main | |
- release-[0-9]+.[0-9]+ | |
pull_request: | |
branches: | |
- main | |
- release-[0-9]+.[0-9]+ | |
defaults: | |
run: | |
shell: bash | |
working-directory: governance-policy-propagator | |
jobs: | |
kind-tests: | |
runs-on: ubuntu-latest | |
env: | |
REGISTRY: localhost:5000 | |
strategy: | |
fail-fast: false | |
matrix: | |
# Run tests on minimum and newest supported OCP Kubernetes | |
# The "minimum" tag is set in the Makefile | |
# KinD tags: https://hub.docker.com/r/kindest/node/tags | |
kind: | |
- 'minimum' | |
- 'latest' | |
name: KinD tests | |
steps: | |
- name: Checkout Governance Policy Propagator | |
uses: actions/checkout@v3 | |
with: | |
path: governance-policy-propagator | |
fetch-depth: 0 # Fetch all history for all tags and branches | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
id: go | |
with: | |
go-version-file: governance-policy-propagator/go.mod | |
- name: Verify modules | |
run: | | |
go mod verify | |
- name: Verify format | |
run: | | |
make fmt | |
git diff --exit-code | |
make lint | |
- name: Verify deploy/operator.yaml | |
run: | | |
make generate-operator-yaml | |
git diff --exit-code | |
- name: Unit and Integration Tests | |
run: | | |
make test | |
- name: Create K8s KinD Cluster - ${{ matrix.kind }} | |
env: | |
KIND_VERSION: ${{ matrix.kind }} | |
run: | | |
make kind-bootstrap-cluster-dev | |
- name: E2E Tests | |
run: | | |
export GOPATH=$(go env GOPATH) | |
make e2e-test-coverage | |
- name: E2E Tests for Compliance Events API | |
run: | | |
make postgres | |
make e2e-test-coverage-compliance-events-api | |
- name: Test Coverage Verification | |
if: ${{ github.event_name == 'pull_request' }} | |
run: | | |
make test-coverage | |
make coverage-verify | |
- name: Verify Deployment Configuration | |
run: | | |
make webhook | |
make build-images | |
make kind-deploy-controller-dev | |
- name: E2E Tests for Webhook | |
run: | | |
make e2e-test-webhook | |
- name: Debug | |
if: ${{ failure() }} | |
run: | | |
make e2e-debug | |
- name: Clean up cluster | |
if: ${{ always() }} | |
run: | | |
make kind-delete-cluster | |