Skip to content

v1.3.0; 2026-04-10

v1.3.0; 2026-04-10 #9

Workflow file for this run

name: deps-ci
on:
pull_request:
branches: [ main, master ]
workflow_dispatch:
permissions:
contents: read
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
- run: go mod tidy
- run: go build ./...
- run: go test ./...
- name: govulncheck (non-blocking)
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
"$(go env GOPATH)/bin/govulncheck" ./... || true