Skip to content

chore(deps): update dependency types-requests to v2.33.0.20260503 #1532

chore(deps): update dependency types-requests to v2.33.0.20260503

chore(deps): update dependency types-requests to v2.33.0.20260503 #1532

Workflow file for this run

name: Unit tests
on:
push:
workflow_dispatch:
jobs:
container_job:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
fail-fast: true
container: ubuntu:latest@sha256:f3d28607ddd78734bb7f71f117f3c6706c666b8b76cbff7c9ff6e5718d46ff64
steps:
- name: Check out repository code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install uv and set the python version
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
version: "0.11.8"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
apt update
apt install --no-install-recommends --yes bash curl git gpg ca-certificates # needed by codecov below
uv sync --link-mode=copy --dev # editable install so coverage can be generated
- name: Run Unit tests
run: uv run pytest --cov-report term-missing --cov-report=xml --cov=src tests
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
with:
fail_ci_if_error: true
files: ./coverage.xml
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}