Skip to content

Bump boto3 from 1.40.73 to 1.40.74 #204

Bump boto3 from 1.40.73 to 1.40.74

Bump boto3 from 1.40.73 to 1.40.74 #204

Workflow file for this run

name: lint
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
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 pre-commit
run: uv run pre-commit run --show-diff-on-failure --color=always --all-files