Skip to content

Use the controller's namespace for ServiceMonitor definitions #281

Use the controller's namespace for ServiceMonitor definitions

Use the controller's namespace for ServiceMonitor definitions #281

Workflow file for this run

name: Linting and Unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
working-directory: governance-policy-addon-controller
jobs:
linting-and-unit-tests:
runs-on: ubuntu-latest
name: Linting and Unit tests
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: governance-policy-addon-controller
fetch-depth: 0 # Fetch all history for all tags and branches
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: governance-policy-addon-controller/go.mod
- name: Verify modules
run: |
go mod verify
- name: Some quality checks
run: |
make fmt
git diff --exit-code
make lint
make gosec-scan
- name: Unit and Integration Tests
run: |
make test