Skip to content

chore(deps): bump boto3 from 1.34.3 to 1.34.59 #154

chore(deps): bump boto3 from 1.34.3 to 1.34.59

chore(deps): bump boto3 from 1.34.3 to 1.34.59 #154

Workflow file for this run

name: Run test suite
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
name: "Python ${{ matrix.python-version }} with ${{ matrix.session }}"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
session: ["memory", "localstack"] # TODO: we don't test against production AWS
steps:
- name: Start Docker container with localstack
if: matrix.session == 'localstack'
run: docker run -d -p 4566:9324 --rm softwaremill/elasticmq-native
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
- name: Run tests
run: poetry run pytest -vv -k ${{ matrix.session }}