claude bot: postgres service container basics
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Tests / Go tests (push) Successful in 20s

This commit is contained in:
2026-08-21 18:56:02 -06:00
parent f9fba50093
commit 6313817cd4
+15
View File
@@ -22,6 +22,18 @@ jobs:
pull-requests: write
issues: write
# Note: Gitea Actions may not require id-token: write for basic functionality
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout repository
uses: actions/checkout@v4
@@ -83,6 +95,7 @@ jobs:
Bash(./tailwind.sh)
Bash(node -v)
Bash(npm install)
Bash(psql:*)
gitea_api_url: "https://gitea.inventory-plus-plus.com/api/v1"
gitea_token: ${{ secrets.GITEA_TOKEN }} # Use standard workflow token
# anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
@@ -102,3 +115,5 @@ jobs:
env:
GITEA_SERVER_URL: "https://gitea.inventory-plus-plus.com"
NODE_VERSION: 24.x
POSTGRES_HOST: postgres
POSTGRES_PORT: 5432