All checks were successful
ci / build (push) Successful in 2m33s
Add a new receiver application under cmd/receiver that accepts metrics via HTTP POST and stores them in SQLite using GORM. The receiver expects GitHub Actions style execution context (org, repo, workflow, job, run_id). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
337 B
Modula-2
15 lines
337 B
Modula-2
module edp.buildth.ing/DevFW-CICD/forgejo-runner-resource-collector
|
|
|
|
go 1.25.6
|
|
|
|
require (
|
|
gorm.io/driver/sqlite v1.6.0
|
|
gorm.io/gorm v1.31.1
|
|
)
|
|
|
|
require (
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.22 // indirect
|
|
golang.org/x/text v0.20.0 // indirect
|
|
)
|