Skip to content

ci: replace heavy diesel with psql #4

ci: replace heavy diesel with psql

ci: replace heavy diesel with psql #4

Workflow file for this run

name: Test
on:
push:
branches:
- production
pull_request:
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
ports:
- 5432:5432
env:
POSTGRES_DB: database
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
options: >-
--health-cmd="pg_isready -U postgres"
--health-interval=10s
--health-timeout=5s
--health-retries=5
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- name: Set up database
run: |
find migrations -type f -name "up.sql" | while read file; do
psql postgres://postgres:password@localhost:5432/database -f $file
done
- name: Seed database
run: |
psql postgres://postgres:password@localhost:5432/database -f src/tests/e2e/sql/seed.sql
- name: Run tests
run: cargo test
env:
MASTER_BACKEND_URL: localhost:1010
DATABASE_URL: postgres://postgres:password@localhost:5432/database
MASTER_METRICS_URL: localhost:1111
JWT_ACCESS_SECRET: some_secret
JWT_REFRESH_SECRET: some_secret
OAUTH_DISCORD_CLIENT_SECRET: not_used_in_tests
OAUTH_DISCORD_CLIENT_ID: not_used_in_tests
OAUTH_GITHUB_CLIENT_SECRET: not_used_in_tests
OAUTH_GITHUB_CLIENT_ID: not_used_in_tests
OAUTH_GOOGLE_CLIENT_SECRET: not_used_in_tests
OAUTH_GOOGLE_CLIENT_ID: not_used_in_tests
RESEND_API_KEY: not_used_in_tests
SERVER_MODE: development