feat(team): Show org members with project access (least privilege model) #68
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: TaskFlow API CI | |
| on: | |
| push: | |
| branches: [main, 003-backend-api] | |
| paths: | |
| - 'apps/api/**' | |
| - '.github/workflows/api.yml' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'apps/api/**' | |
| defaults: | |
| run: | |
| working-directory: apps/api | |
| env: | |
| # Test environment variables | |
| DATABASE_URL: "postgresql://test:test@localhost/test" | |
| SSO_URL: "http://localhost:3000" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Set up Python 3.13 | |
| run: uv python install 3.13 | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: Run tests | |
| run: uv run pytest -v --tb=short | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Set up Python 3.13 | |
| run: uv python install 3.13 | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Lint with ruff | |
| run: uv run ruff check . | |
| - name: Format check | |
| run: uv run ruff format --check . | |
| import-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Set up Python 3.13 | |
| run: uv python install 3.13 | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Verify package imports | |
| run: | | |
| uv run python -c "from taskflow_api.main import app; print('Import successful:', type(app))" |