⬆️ Update dependency pip to v26 [SECURITY] #893
Workflow file for this run
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: pydantic1-compat-test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - next | |
| paths: | |
| - admin-frontend/** | |
| - docker/** | |
| - nonebot_bison/** | |
| - tests/** | |
| - pyproject.toml | |
| - uv.lock | |
| - docker.env.prod | |
| - .github/** | |
| pull_request: | |
| paths: | |
| - admin-frontend/** | |
| - docker/** | |
| - nonebot_bison/** | |
| - tests/** | |
| - pyproject.toml | |
| - uv.lock | |
| - docker.env.prod | |
| - .github/** | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: pydantic1 test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| python-version: ["3.11"] | |
| os: [ubuntu-latest] | |
| fail-fast: false | |
| env: | |
| OS: ${{ matrix.os }} | |
| PYTHON_VERSION: ${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python environment | |
| uses: ./.github/actions/setup-python | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install prerequisites | |
| run: uv add pydantic==1.10 && uv sync --frozen | |
| - name: Install Playwright | |
| run: uv run playwright install --with-deps && uv run playwright install | |
| - name: Run Pytest | |
| run: uv run pytest -k 'not compare and not render' -n auto |