e2e: fix qemu option generation and vm-setup for single node test VMs. #102
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: Lint | |
on: | |
push: | |
branches: | |
- main | |
- "release-*" | |
- "test/**" | |
pull_request: | |
branches: | |
- main | |
- "release-*" | |
permissions: | |
contents: read | |
# allow checks write access to let the action annotate code in PRs | |
checks: write | |
jobs: | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.64.5 | |
args: --timeout=10m |