Skip to content

Bump boto3 from 1.40.73 to 1.41.2 #210

Bump boto3 from 1.40.73 to 1.41.2

Bump boto3 from 1.40.73 to 1.41.2 #210

Workflow file for this run

name: test
on:
pull_request:
push:
branches: [main]
jobs:
pytest:
name: "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:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: "${{ matrix.python-version }}"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests