Files
backend/.gitea/workflows/test.yml
Yi-Ting Shih f53752b7d8
Some checks failed
Go test / run-go-vet (push) Successful in 6s
Go test / run-go-test (push) Failing after 3s
Feat: add workflows
2025-12-09 00:00:00 +08:00

21 lines
393 B
YAML

---
name: Go test
on: [push]
jobs:
run-go-vet:
runs-on: imgbuilder
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run go vet
run: go vet
run-go-test:
needs: run-go-vet
runs-on: imgbuilder
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run go test
run: make test-quiet