feat: add sqlite-backed API docs and tests
All checks were successful
ci / test-and-build (push) Successful in 11m21s

This commit is contained in:
Steve W
2026-04-11 18:42:05 +00:00
parent 87efe766a2
commit f0275c41d0
9 changed files with 304 additions and 5 deletions

18
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: ci
on:
push:
branches: [main]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.24.2'
- name: Test
run: go test ./...
- name: Build Docker image
run: docker build -t git.danhenry.dev/thelab/work-queue-api:latest .