feat: Finance API + тесты + CI/CD #1

Merged
daniil merged 11 commits from dev into main 2026-03-01 05:14:22 +00:00
2 changed files with 11 additions and 2 deletions
Showing only changes of commit 13b4435c45 - Show all commits

View File

@@ -25,3 +25,9 @@ jobs:
- name: Build
run: CGO_ENABLED=0 go build -o main ./cmd/api
- name: Trigger Deploy
run: |
curl -s -X POST http://172.18.0.1:9000/deploy \
-H 'Content-Type: application/json' \
-d '{"ref":"refs/heads/dev","repository":{"name":"pulse-api"}}'

View File

@@ -17,5 +17,8 @@ jobs:
- name: Build
run: CGO_ENABLED=0 go build -o main ./cmd/api
- name: Deploy
run: echo "Production deploy via docker"
- name: Trigger Deploy
run: |
curl -s -X POST http://172.18.0.1:9000/deploy \
-H 'Content-Type: application/json' \
-d '{"ref":"refs/heads/main","repository":{"name":"pulse-api"}}'