Skip to content

feat: add hub command to browse and deploy from the runpod hub #212

feat: add hub command to browse and deploy from the runpod hub

feat: add hub command to browse and deploy from the runpod hub #212

Workflow file for this run

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.25.8
uses: actions/setup-go@v5
with:
go-version: 1.25.8
# You can test your matrix by printing the current Go version
- name: Display Go version
run: go version
- name: Install govulncheck
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
- name: run vet
run: go vet ./...
- name: build all packages
run: go build ./...
- name: check for vulnerabilities
run: govulncheck ./...
- name: Run tests
run: go test -vet=off --cover ./...