Skip to content

chore: bump testcontainers from 4.13.0 to 4.13.1 #323

chore: bump testcontainers from 4.13.0 to 4.13.1

chore: bump testcontainers from 4.13.0 to 4.13.1 #323

Workflow file for this run

name: QA
on: pull_request
concurrency:
group: qa-pr-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
qa:
name: QA
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
version: [ '3.11', '3.12', '3.13' ]
steps:
- name: Clone repository
uses: actions/checkout@v5
- name: Use Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.version }}
- name: Install dependencies
run: |
curl --location --silent --show-error --fail https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
uv sync --dev
- name: Run QA
run: make qa