versions: add k8s 1.31, remove k8s 1.28 #9128
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: Integration Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- "release/**" | |
paths: | |
- "**.go" | |
- "**/go.mod" | |
- "**/go.sum" | |
- ".github/workflows/test-integration.yml" | |
pull_request: | |
paths: | |
- "**.go" | |
- "**/go.mod" | |
- "**/go.sum" | |
- ".github/workflows/test-integration.yml" | |
jobs: | |
integration-test: | |
runs-on: ubuntu-24.04 | |
env: | |
CTEST_OUTPUT_ON_FAILURE: True | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }} | |
- name: Setup bazel | |
uses: ./.github/actions/setup_bazel_nix | |
- name: Integration Tests | |
env: | |
TMPDIR: ${{ runner.temp }} | |
run: sudo -E "PATH=$PATH" bazel test //... --config=nostamp --remote_download_minimal --config=integration-only --spawn_strategy=standalone |