Skip to content

chore(deps): bump idna from 3.11 to 3.15 #133

chore(deps): bump idna from 3.11 to 3.15

chore(deps): bump idna from 3.11 to 3.15 #133

Workflow file for this run

permissions:
contents: read
name: pytest
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
pytest:
name: Run tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run Tests via tox
run: |
VERSION=$(echo "${{ matrix.python-version }}" | tr -d '.')
uv run tox -e py$VERSION
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}