Skip to content

Bump boto3 from 1.35.54 to 1.35.55 (#896) #2774

Bump boto3 from 1.35.54 to 1.35.55 (#896)

Bump boto3 from 1.35.54 to 1.35.55 (#896) #2774

Workflow file for this run

name: PyTests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
POETRY_VIRTUALENVS_CREATE: false
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install --no-root
- name: Run tests
run: |
pytest ./tests/unit