Bump starlette from 0.49.3 to 1.3.1 #10
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: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| env: | |
| OPERRA_LOG_FILE: "0" | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7, Node 24 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6, Node 24 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| - name: Install dependencies | |
| run: | | |
| pip install -r requirements-dev.txt | |
| pip check | |
| - name: Install browser | |
| run: python -m playwright install --with-deps chromium | |
| - name: Check frontend syntax | |
| run: | | |
| node --check app/api/static/app.js | |
| node --check app/api/static/artifact-history.js | |
| node --check app/api/static/onboarding.js | |
| - name: Unit tests | |
| run: python -m pytest -q | |
| - name: Browser end-to-end | |
| run: python scripts/e2e_ui.py |