Skip to content

Bump github.com/luthermonson/go-proxmox from 0.2.0 to 0.2.1 #2

Bump github.com/luthermonson/go-proxmox from 0.2.0 to 0.2.1

Bump github.com/luthermonson/go-proxmox from 0.2.0 to 0.2.1 #2

Workflow file for this run

---
name: Go Test
on:
pull_request:
paths-ignore:
- '.github/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
go-test:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...