Skip to content

Implementing creation, listing, and deletion of firewall rules for QEMU #241

Implementing creation, listing, and deletion of firewall rules for QEMU

Implementing creation, listing, and deletion of firewall rules for QEMU #241

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.19'
check-latest: true
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build -v ./...
- name: Run go vet
run: go vet ./...
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: staticcheck ./...
- name: Install golint
run: go install golang.org/x/lint/golint@latest
- name: Run golint
run: golint ./...
- name: Run proxmox unit tests
run: go test -race -vet=off ./proxmox/...