Files
work-queue-api/ci.yml
Steve W f0275c41d0
All checks were successful
ci / test-and-build (push) Successful in 11m21s
feat: add sqlite-backed API docs and tests
2026-04-11 18:42:05 +00:00

19 lines
359 B
YAML

name: ci
on:
push:
branches: [main]
jobs:
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 image
run: docker build -t git.danhenry.dev/thelab/work-queue-api:latest .