mirror of https://github.com/buster-so/buster.git
60 lines
2.0 KiB
YAML
60 lines
2.0 KiB
YAML
name: API Testing
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'api/**'
|
|
- '.github/workflows/api-testing.yml'
|
|
- '.github/actions/setup-test-environment/action.yml' # Rerun if common setup changes
|
|
- '.github/actions/stop-supabase/action.yml'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: blacksmith-16vcpu-ubuntu-2204
|
|
|
|
# Service container for Redis (needed by the setup action)
|
|
services:
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- 6379:6379
|
|
options: >-
|
|
--health-cmd "redis-cli ping"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
# Node.js setup removed
|
|
|
|
- name: Setup Test Environment
|
|
uses: ./.github/actions/setup-test-environment
|
|
|
|
- name: Run API Tests
|
|
working-directory: ./api # Tests run from the api directory
|
|
run: cargo test --workspace # Run tests for all packages in the api workspace
|
|
env:
|
|
# Use hardcoded default values and secrets
|
|
DATABASE_URL: postgres://postgres:postgres@127.0.0.1:54322/postgres
|
|
REDIS_URL: redis://localhost:6379 # Connect to the Redis service container
|
|
JWT_SECRET: ${{ secrets.GH_ACTIONS_SUPABASE_JWT_SECRET }} # Use secret
|
|
SUPABASE_URL: http://127.0.0.1:54321 # Default local URL
|
|
SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.GH_ACTIONS_SUPABASE_SERVICE_ROLE_KEY }} # Use secret
|
|
RUST_LOG: debug # Or adjust as needed
|
|
|
|
# Sensitive values from Secrets
|
|
OPENAI_API_KEY: ${{ secrets.GH_ACTIONS_OPENAI_API_KEY }}
|
|
RESEND_API_KEY: ${{ secrets.GH_ACTIONS_RESEND_API_KEY }}
|
|
COHERE_API_KEY: ${{ secrets.GH_ACTIONS_COHERE_API_KEY }}
|
|
LLM_API_KEY: ${{ secrets.GH_ACTIONS_LLM_API_KEY }}
|
|
LLM_BASE_URL: ${{ secrets.GH_ACTIONS_LLM_BASE_URL }}
|
|
|
|
- name: Stop Supabase # Use the cleanup action
|
|
uses: ./.github/actions/stop-supabase
|
|
if: always() # Ensure Supabase is stopped even if tests fail
|