trepa/build/ci/.build.yml
qpismont 9d544c7e8a
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
Update CI configuration to use Go 1.24.1-alpine for build, lint, and test steps. Fix test database setup path in account tests and improve error handling in JWT verification.
2025-03-24 20:55:54 +00:00

14 lines
No EOL
198 B
YAML

when:
event: [tag, push]
steps:
- name: build
image: golang:1.24.1-alpine
commands:
- apk update
- apk add bash
- bash scripts/build.sh
depends_on:
- lint
- tests