Automated backport of #1226: Pin markdownlint-cli version #1228: Pin gitlint version #1499: Fix linting image build failure due to PEP 668 #1822
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: | |
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: | |
CLUSTERS_ARGS: --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.*" |