Bump aiobotocore from 2.6.0 to 2.14.0 #208
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: [ '*' ] | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
tests: | |
strategy: | |
max-parallel: 7 | |
matrix: | |
os: | |
- ubuntu-latest | |
python-version: | |
- '3.7' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- pypy-3.8 | |
- pypy-3.9 | |
include: | |
- os: ubuntu-latest | |
python-version: '3.8' | |
coverage: true | |
lint: true | |
- os: macOS-latest | |
python-version: '3.8' | |
- os: windows-latest | |
python-version: '3.8' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5.1.1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -U hatch | |
- name: ruff | |
if: ${{ matrix.lint }} | |
run: | | |
hatch run lint:ruff check aioworkers_boto tests | |
- name: isort | |
if: ${{ matrix.lint }} | |
run: | | |
hatch run lint:isort -c aioworkers_boto tests | |
- name: black | |
if: ${{ matrix.lint }} | |
run: | | |
hatch run lint:black --check --diff aioworkers_boto tests | |
- name: mypy | |
if: ${{ matrix.lint }} | |
run: | | |
hatch run lint:mypy aioworkers_boto tests | |
- name: Tests with coverage | |
run: | | |
hatch run cov | |
- name: coverage.xml | |
if: ${{ matrix.coverage }} | |
run: | | |
hatch run coverage xml | |
- name: Upload coverage to Codecov | |
if: ${{ matrix.coverage }} | |
uses: codecov/codecov-action@v4.5.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
flags: unittests | |
name: codecov-umbrella | |
fail_ci_if_error: true |