Skip to content

refactor: First migration attempt from requests to httpx. #464

refactor: First migration attempt from requests to httpx.

refactor: First migration attempt from requests to httpx. #464

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Install uv and set the python version ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --all-extras
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
uv run ruff check --select=E9,F63,F7,F82 --target-version=py39 .
# default set of ruff rules with GitHub Annotations
uv run ruff check --target-version=py39 .
- name: Test with pytest
run: |
uv run pytest --cov=./actual --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}