ci: add Gitea Actions workflows and placeholder tests
Some checks failed
CI / ci (push) Failing after 47s

This commit is contained in:
Cosmo
2026-03-01 00:05:08 +00:00
parent 2a50e50771
commit b91e67ac1d
6 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package health
import "testing"
func TestHealthCheck(t *testing.T) {
status := "ok"
if status != "ok" {
t.Errorf("expected ok, got %s", status)
}
}