bump minimum aiohttp req, drop python 3.7, add aiohttp version tests #384
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: CI | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: [ '[0-9]+.[0-9]+.[0-9]+' ] | |
pull_request: | |
branches: | |
- 'master' | |
- '[0-9].[0-9]+.[0-9]+' | |
jobs: | |
test: | |
name: Test Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
include: | |
- aiohttp-version: '3.7.4.post0' | |
- aiohttp-version: '3.8.5' | |
python-version: '3.11' | |
fail-fast: true | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup Python ${{ matrix.pyver }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Lock and sync dependencies | |
env: | |
AIOHTTP_VERSION: ${{ matrix.aiohttp-version }} | |
run: | | |
python -c "import sys; print(f'Python version: {sys.version}')" | |
python -m pip install -U setuptools pip codecov wheel pip-tools | |
pip-compile --resolver=backtracking requirements-dev.in | |
pip-sync requirements-dev.txt | |
- name: Run flake | |
if: matrix.python-version == '3.11' | |
run: | | |
make flake | |
- name: Run unittests | |
env: | |
COLOR: 'yes' | |
run: | | |
make mototest | |
- name: Upload coverage to Codecov | |
if: matrix.python-version == '3.11' | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
files: ./coverage.xml | |
flags: unittests # optional | |
name: codecov-umbrella # optional | |
fail_ci_if_error: true # optional (default = false) | |
path_to_write_report: ./codecov_report.txt | |
verbose: true # optional (default = false) | |
pre-deploy: | |
name: Pre-Deploy | |
runs-on: ubuntu-latest | |
needs: test | |
# Run only on pushing a tag | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
steps: | |
- name: Dummy | |
run: | | |
echo "Predeploy step" | |
build-tarball: | |
name: Tarball | |
runs-on: ubuntu-latest | |
needs: pre-deploy | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Make distributions (sdist and wheel) | |
run: | | |
python -c "import sys; print(f'Python version: {sys.version}')" | |
python -m pip install -U setuptools pip wheel | |
python setup.py sdist bdist_wheel | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist | |
deploy: | |
name: Deploy | |
needs: [build-tarball] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install twine | |
run: | | |
python -m pip install twine | |
- name: Download dists | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: dist | |
- name: PyPI upload | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
run: | | |
twine upload dist/* |