Skip to content

fix(DB replication): Prevent replica lag issues in SDK views #9069

fix(DB replication): Prevent replica lag issues in SDK views

fix(DB replication): Prevent replica lag issues in SDK views #9069

name: API Pull Request
on:
pull_request:
paths:
- api/**
- .github/**
types: [opened, synchronize, reopened, ready_for_review]
push:
paths:
- api/**
- .github/**
branches:
- main
defaults:
run:
working-directory: api
env:
DOTENV_OVERRIDE_FILE: .env-ci
jobs:
test:
runs-on: depot-ubuntu-latest-16
name: API Unit Tests
services:
postgres:
image: postgres:15.5-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports: ['5432:5432']
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
strategy:
max-parallel: 2
matrix:
python-version: ['3.11', '3.12']
steps:
- name: Cloning repo
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: make install-packages
- name: Create analytics database
env:
PGPASSWORD: postgres
run: createdb -h localhost -U postgres -p 5432 analytics
- name: Check for missing migrations
env:
opts: --no-input --dry-run --check
run: make django-make-migrations
- uses: liskin/gh-problem-matcher-wrap@v2
with:
action: add
linters: mypy
- name: Check for new typing errors
run: make typecheck
- uses: liskin/gh-problem-matcher-wrap@v2
with:
action: remove
linters: mypy
- name: Check autogenerated documentation
uses: nickcharlton/diff-check@v1.0.0
with:
command: make -C api generate-docs
- name: Run Tests
run: make test
- name: Upload Coverage
uses: codecov/codecov-action@v4
env:
PYTHON: ${{ matrix.python-version }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: PYTHON