fix: enable CI tests with build tags and add billing tests
Some checks failed
ci/woodpecker/push/build Pipeline failed

- Add build tag to studio/embed.go to exclude from test builds
- Create stub embed_testing.go for test builds
- Update CI pipeline to use -tags testing
- Add tests for webhook signature verification and status normalization

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Josh 2026-01-09 02:44:49 +02:00
parent cb4bebb42c
commit b2b2a42ca9
4 changed files with 206 additions and 1 deletions

View file

@ -6,7 +6,7 @@ steps:
- name: test
image: golang:1.24-alpine
commands:
- go test ./...
- go test -tags testing ./...
- name: build
image: docker:27-cli