fix(deps): update golang.org/x/exp digest to 93d18d7 #227
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: 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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- 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 |