Skip to content

chore(deps-dev): bump pytest from 8.3.4 to 8.4.2 in the uv group across 1 directory #220

chore(deps-dev): bump pytest from 8.3.4 to 8.4.2 in the uv group across 1 directory

chore(deps-dev): bump pytest from 8.3.4 to 8.4.2 in the uv group across 1 directory #220

Workflow file for this run

name: Test Earliest Dependencies
on:
push:
branches: [ main ]
pull_request:
permissions: {}
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install the latest version of uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
- name: Install dependencies and force lowest bound
run: |
uv sync --upgrade --resolution lowest-direct
- name: List installed Python packages
run: uv pip list | tee "$(tty)" | uvx tabulate --header --format github >> $GITHUB_STEP_SUMMARY
- name: Run tests
run: uv run pytest