Add manifest gate for obex tests (bugfix) #1649
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: Test provider-base with tox | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- providers/base/** | |
pull_request: | |
branches: [ main ] | |
paths: | |
- providers/base/** | |
workflow_dispatch: | |
jobs: | |
tox_test_provider_base: | |
name: Test provider-base with tox | |
defaults: | |
run: | |
working-directory: providers/base | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: ["3.5", "3.6", "3.8", "3.10"] | |
include: | |
- python: "3.5" | |
tox_env_name: "py35" | |
- python: "3.6" | |
tox_env_name: "py36" | |
- python: "3.8" | |
tox_env_name: "py38" | |
- python: "3.10" | |
tox_env_name: "py310" | |
steps: | |
- uses: actions/checkout@v4 | |
# Python 3.5 setup was failing because of a CERTIFICATE_VERIFY_FAILED | |
# error. To fix this, we have set up manually PIP_TRUSTED_HOST, checking | |
# first that we can "curl" the hosts, since they will fail in case of | |
# expired/invalid/self-signed certificate. | |
- name: Workaround SSL Certificates manual verification for Python | |
run: | | |
curl --fail --silent --show-error https://pypi.python.org | |
curl --fail --silent --show-error https://pypi.org | |
curl --fail --silent --show-error https://files.pythonhosted.org | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
env: | |
PIP_TRUSTED_HOST: pypi.python.org pypi.org files.pythonhosted.org | |
- name: Install libsystemd-dev | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libsystemd-dev | |
- name: Install tox | |
run: pip install tox | |
- name: Run tox | |
run: tox -e${{ matrix.tox_env_name }} | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: provider-base |