Skip to content

docs(eventos): add the issue-15 implementation plan as a historical a… #97

docs(eventos): add the issue-15 implementation plan as a historical a…

docs(eventos): add the issue-15 implementation plan as a historical a… #97

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
test-and-build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: '3.12'
enable-cache: true
- name: Install test dependencies
run: uv sync --extra dev
- name: Compile and test
env:
BOUNDARY_SYNC_ENABLED: 'false'
SCHEDULER_INITIAL_DELAY_SECONDS: '9999'
TRUSTED_HOSTS: testserver,localhost,127.0.0.1
DATABASE_PATH: /tmp/flight-geofence-ci.db
DOWNLOAD_DIR: /tmp/flight-geofence-downloads
run: |
uv run python -m compileall -q app tests
uv run pytest -q
- name: Check frontend syntax
run: node --check app/static/app.js
- name: Validate Compose
run: cp .env.example .env && docker compose config --quiet
- name: Build container
run: docker build --pull --tag flight-geofence-alerts:ci .