Skip to content

chore(deps): update podinfo to v6.6.3 #369

chore(deps): update podinfo to v6.6.3

chore(deps): update podinfo to v6.6.3 #369

Workflow file for this run

name: E2E Tests
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
- "goreleaser.yml"
permissions:
contents: read
# Abort prior jobs in the same workflow / PR
concurrency:
group: e2e-k3d-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Setup golang
uses: ./.github/actions/golang
- name: Install UDS CLI
uses: ./.github/actions/install-uds-cli
- name: Build UDS-CLI binary
run: uds run build-cli-linux-amd
- name: Setup K3d
uses: ./.github/actions/k3d
- name: Run e2e tests
run: |
build/uds run test:e2e-no-ghcr-write
- name: Save logs
if: always()
uses: ./.github/actions/save-logs