Skip to content

feat: Implement initial API structure with FastAPI, including rate li… #4

feat: Implement initial API structure with FastAPI, including rate li…

feat: Implement initial API structure with FastAPI, including rate li… #4

Workflow file for this run

name: CI
on:
push:
branches: [main, first-design]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v