fix apiVersion of PodDisruptionBudget #123
Workflow file for this run
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: Test Action | |
on: | |
pull_request: | |
branches: | |
- main | |
release: | |
types: | |
- published | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Test and Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
cache: false | |
- name: Lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
args: --build-tags integration -p bugs -p unused --timeout=3m | |
- name: Test | |
run: make test |