build(deps): bump github.com/luthermonson/go-proxmox from 0.1.1 to 0.1.2 #855
Workflow file for this run
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: | |
push: | |
branches: ["main"] | |
pull_request_target: | |
types: ["opened", "synchronize", "reopened", "labeled", "unlabeled"] | |
branches: ["main"] | |
jobs: | |
e2e: | |
if: ${{ ! contains( github.event.pull_request.labels.*.name, 'skip e2e') }} | |
runs-on: [capmox,e2e,dcd-playground] | |
environment: e2e | |
env: | |
PROXMOX_URL: ${{ secrets.PROXMOX_URL }} | |
PROXMOX_TOKEN: ${{ secrets.PROXMOX_TOKEN }} | |
PROXMOX_SECRET: ${{ secrets.PROXMOX_SECRET }} | |
steps: | |
- name: Check out branch ${{ github.ref }} | |
if: ${{ github.event_name == 'push' }} | |
uses: actions/[email protected] | |
- name: Check out PR ${{ github.event.pull_request.number }} | |
if: ${{ github.event_name == 'pull_request_target' }} | |
uses: actions/[email protected] | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Run e2e tests | |
run: "make test-e2e" | |
- name: Cleanup kind clusters | |
uses: gacts/run-and-post-run@v1 | |
with: | |
post: | | |
kind get clusters | xargs -I% kind delete cluster --name % | |
docker system prune -a -f |