chore(deps): update aiobotocore requirement from >=2.15.0 to >=3.4.0 in /backend #40
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: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| backend: | |
| name: Backend — lint, types, tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup backend | |
| uses: ./.github/actions/setup-backend | |
| - name: Lint (ruff) | |
| working-directory: backend | |
| run: ruff check . | |
| - name: Type check (mypy) | |
| working-directory: backend | |
| run: mypy app/ | |
| - name: Unit tests (pytest) | |
| working-directory: backend | |
| run: pytest tests/unit/ -x --cov=app --cov-report=term-missing | |
| env: | |
| SUPABASE_URL: https://placeholder.supabase.co | |
| SUPABASE_ANON_KEY: placeholder | |
| SUPABASE_SERVICE_KEY: placeholder | |
| SERVER_SECRET: 0000000000000000000000000000000000000000000000000000000000000000 | |
| frontend: | |
| name: Frontend — lint, types, tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup frontend | |
| uses: ./.github/actions/setup-frontend | |
| - name: Lint (eslint) | |
| working-directory: frontend | |
| run: npm run lint | |
| - name: Type check (tsc) | |
| working-directory: frontend | |
| run: npx tsc --noEmit | |
| - name: Unit tests (vitest) | |
| working-directory: frontend | |
| run: npm test |