Skip to content

Dev 2384/re connect port forwarding (#53) #207

Dev 2384/re connect port forwarding (#53)

Dev 2384/re connect port forwarding (#53) #207

Workflow file for this run

name: static-checks
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.22.12
- name: Build and test
env:
QBEE_EMAIL: ${{ secrets.QBEE_API_USER }}
QBEE_PASSWORD: ${{ secrets.QBEE_API_PASSWORD }}
QBEE_BASEURL: ${{ secrets.QBEE_API_BASEURL }}
run: go test ./...
- id: govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: 1.22.12
go-package: ./...
- name: golint
run: go run golang.org/x/lint/golint@latest ./...
- name: govet
run: go vet ./...