Skip to content

Bump software.amazon.awssdk:bom from 2.41.32 to 2.42.34 #21

Bump software.amazon.awssdk:bom from 2.41.32 to 2.42.34

Bump software.amazon.awssdk:bom from 2.41.32 to 2.42.34 #21

Workflow file for this run

name: Python Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
uv sync
- name: Run tests
run: |
uv run -m pytest src -v