Feat: add workflows
Some checks failed
Go test / run-go-vet (push) Failing after 1s
Go test / run-go-test (push) Failing after 0s

This commit is contained in:
2025-12-08 23:18:19 +08:00
parent f191aef810
commit 978a4193be

15
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,15 @@
---
name: Go test
on: [push]
jobs:
run-go-vet:
runs-on: imgbuilder
steps:
- name: Run go vet
run: go vet
run-go-test:
runs-on: imgbuilder
steps:
- name: Run go test
run: make test