Prepare for release: v5.4.2 (#2119) #2272
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: [pull_request, push] | |
jobs: | |
#################### Unittests #################### | |
unittest: | |
runs-on: blacksmith-4vcpu-ubuntu-2204 | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Install system packages | |
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev libssl-dev | |
- name: Check out code from GitHub | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
id: python | |
uses: useblacksmith/setup-python@v6 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pip install --upgrade pip wheel tox tox-docker | |
- name: Run unittest | |
run: tox -v -e ${{ matrix.python-version }}-linux-unit -- -v | |
#################### Integration tests #################### | |
integration: | |
needs: [unittest] | |
runs-on: blacksmith-4vcpu-ubuntu-2204 | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8,3.9,"3.10","3.11","3.12"] | |
experimental: [false] | |
include: | |
- python-version: pypy3.9 | |
experimental: true | |
steps: | |
- name: Install system packages | |
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev libssl-dev | |
- name: Check out code from GitHub | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
id: python | |
uses: useblacksmith/setup-python@v6 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pip install --upgrade pip wheel tox tox-docker | |
# Tox fails if a Python versions contains a hyphen, this changes "pypy-3.9" to "pypy3.9". | |
- name: Run AMQP integration tests | |
run: tox -v -e ${{ matrix.python-version }}-linux-integration-py-amqp -- -v | |
- name: Run redis integration tests | |
run: tox -v -e ${{ matrix.python-version }}-linux-integration-py-redis -- -v | |
- name: Run MongoDB integration tests | |
run: tox -v -e ${{ matrix.python-version }}-linux-integration-py-mongodb -- -v | |
- name: Run kafka integration tests | |
if: ${{ matrix.python-version != 'pypy3.9'}} | |
run: tox -v -e ${{ matrix.python-version }}-linux-integration-py-kafka -- -v | |
#################### Linters and checkers #################### | |
lint: | |
needs: [unittest, integration] | |
runs-on: blacksmith-4vcpu-ubuntu-2204 | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- name: Install system packages | |
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev libssl-dev | |
- name: Check out code from GitHub | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
id: python | |
uses: useblacksmith/setup-python@v6 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pip install --upgrade pip wheel tox tox-docker | |
- name: Run flake8 | |
run: tox -v -e flake8 -- -v | |
- name: Run pydocstyle | |
run: tox -v -e pydocstyle -- -v | |
- name: Run apicheck | |
run: tox -v -e apicheck -- -v | |
- name: Run mypy | |
run: tox -v -e mypy -- -v |