common-instancetypes: Ignore attempts to reconcile virt-operator owned objects from bundle #1972
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 csv-generator | |
on: | |
push: {} | |
pull_request: {} | |
jobs: | |
validate_metrics_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Golang 1.19 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.19' | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Generate metrics docs | |
run: make generate-doc | |
- name: Validate no changes | |
run: git diff --exit-code | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Golang 1.19 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.19' | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build and Test csv-generator | |
run: make container-build && ./tests/e2e-test-csv-generator.sh | |
check_commited_files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check commited files | |
run: hack/check-commited-changes.sh |