Skip to content

fix(deps): update module github.com/defenseunicorns/pkg/helpers to v1.1.2 #307

fix(deps): update module github.com/defenseunicorns/pkg/helpers to v1.1.2

fix(deps): update module github.com/defenseunicorns/pkg/helpers to v1.1.2 #307

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup golang
uses: ./.github/actions/golang
- name: Build UDS-CLI binary
run: make build-cli-linux-amd ARCH=amd64
- name: Setup K3d
uses: ./.github/actions/k3d
- name: Run e2e tests
run: |
make test-e2e-no-ghcr-write
- name: Save logs
if: always()
uses: ./.github/actions/save-logs