Skip to content

Bump requests from 2.26.0 to 2.32.4 #3

Bump requests from 2.26.0 to 2.32.4

Bump requests from 2.26.0 to 2.32.4 #3

Workflow file for this run

name: Lint and Test
on:
pull_request:
push:
branches: [main]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v6
with:
python-version: "3.13"
- name: Lint code
run: make check
test:
name: test (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v5
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: make test