Skip to content

build(deps-dev): bump aiobotocore in the dev-deps group #2116

build(deps-dev): bump aiobotocore in the dev-deps group

build(deps-dev): bump aiobotocore in the dev-deps group #2116

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
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_system_deps
run: sudo make install_system_deps
- name: install
run: make install
- name: lint
run: make lint
- name: mypy
run: make mypy
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
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_system_deps
run: sudo make install_system_deps
- name: install
run: make install
- name: test
run: make test
env:
FTP_PATH: ${{ secrets.FTP_PATH }}
- name: Upload coverage
uses: codecov/codecov-action@v5