Fix flaky Kind test minimum issue #276
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: 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 |