chore(deps): update registry.access.redhat.com/ubi9/ubi-minimal docker tag to v9.7-1776833838 #419
This file contains hidden or 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: Run Tests | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**/*.adoc' | |
| - '.github/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| envtest: | |
| name: Envtest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-go@v6 | |
| name: Set up Go | |
| with: | |
| go-version: "1.25.7" | |
| - uses: actions/checkout@v6 | |
| name: Checkout ENO | |
| - name: Download envtest binaries | |
| run: | | |
| ENVTEST_DEST="$HOME/.local/share/kubebuilder-envtest/k8s/1.30.3-linux-amd64" | |
| mkdir -p "$ENVTEST_DEST" | |
| curl -sL "https://github.com/kubernetes-sigs/controller-tools/releases/download/envtest-v1.30.3/envtest-v1.30.3-linux-amd64.tar.gz" \ | |
| | tar xz --strip-components=2 -C "$ENVTEST_DEST" | |
| - name: Run tests | |
| run: make test |