sql writer
Some checks are pending
CI / Test (1.23) (push) Waiting to run
CI / Test (1.24) (push) Waiting to run
CI / Test (1.25) (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Build (push) Waiting to run

This commit is contained in:
2025-12-17 20:44:02 +02:00
parent 40bc0be1cb
commit 5e1448dcdb
48 changed files with 4592 additions and 950 deletions

View File

@@ -2,4 +2,4 @@
description: Build the RelSpec binary
---
Build the RelSpec project by running `go build -o relspec ./cmd/relspec`. Report the build status and any errors encountered.
Build the RelSpec project by running `make build`. Report the build status and any errors encountered.

View File

@@ -15,11 +15,12 @@
"useTabs": true
},
"testing": {
"framework": "go test",
"framework": "make test",
"runOnChange": false
},
"build": {
"command": "go build -o relspec ./cmd/relspec",
"command": "make build",
"outputBinary": "relspec"
}
}