Skip to content

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

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

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

---
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.*"