Merge pull request #27 from ronibhakta1/fix/api-cleanup-service-fix #58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv sync --dev | |
| - name: Lint | |
| run: uv run ruff check app/ tests/ | |
| - name: Format check | |
| run: uv run ruff format --check app/ tests/ | |
| - name: Type check | |
| run: uv run mypy app/ | |
| - name: Test | |
| run: uv run pytest -m 'not integration and not slow' -v |