Automated backport of #1012: Use golangci-lint for header checks #993: Drop the leading spaces before the ASL URL #1027: Bump to Fedora 37 #1223: Bump to Fedora 38 #1828
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: Clean Target Verification | |
on: | |
pull_request: | |
permissions: {} | |
env: | |
DEBUG_PRINT: true | |
jobs: | |
clean-clusters: | |
name: Cluster Clean-up | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Deploy clusters | |
env: | |
TIMEOUT: 1m | |
run: make clusters | |
- name: Clean up clusters | |
run: make clean-clusters | |
- name: Check that clusters are gone | |
run: test "$(kind get clusters 2>&1)" = "No kind clusters found." | |
clean-generated: | |
name: Generated Files Clean-up | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Build images | |
run: make images | |
- name: Clean up generated files | |
run: make clean-generated | |
- name: Check that image markers are gone | |
run: test package/.image.* = "package/.image.*" |