Skip to content

feat(model): SingBoxNode + SingBoxInventory (adoption-bridge discovery) #35

feat(model): SingBoxNode + SingBoxInventory (adoption-bridge discovery)

feat(model): SingBoxNode + SingBoxInventory (adoption-bridge discovery) #35

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26.x'
check-latest: true
- name: gofmt
run: test -z "$(gofmt -l .)" || (gofmt -l . && exit 1)
- name: vet
run: go vet ./...
- name: test
run: go test -race -cover ./...
- name: govulncheck
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...