chore(deps): Bump uvicorn from 0.52.1 to 0.52.3 #1809
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: Controller Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - "main" | |
| jobs: | |
| build: | |
| name: Build, Lint, Unit + Integration Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.13"] | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| pip3 install --no-cache-dir poetry==2.4.1 | |
| poetry install --no-root | |
| - name: Lint with ruff | |
| working-directory: ./oidc-controller | |
| run: | | |
| poetry run ruff check . | |
| - name: Format with ruff | |
| run: | | |
| poetry run ruff format --check oidc-controller | |
| - name: Unit tests | |
| run: | | |
| poetry run pytest -m "not e2e and not integration" --log-cli-level=INFO --cov --cov-report lcov | |
| - name: Integration tests | |
| run: | | |
| poetry run pytest -m integration --log-cli-level=INFO | |
| - name: Coveralls Parallel | |
| uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6 | |
| with: | |
| flag-name: python-${{ matrix.python-version }} | |
| parallel: true | |
| code-coverage: | |
| name: Generate Code Coverage | |
| needs: build | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Coveralls Finished | |
| uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6 | |
| with: | |
| parallel-finished: true | |
| carryforward: "python-3.13" |