2021-01-27 05:11:27 +03:00
|
|
|
name: Tests and linters
|
|
|
|
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2022-12-18 22:54:17 +03:00
|
|
|
tests-on-legacy-versions:
|
|
|
|
name: Run tests on legacy versions
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-12-18 23:39:52 +03:00
|
|
|
python-version: [2.7, 3.5, 3.6, 3.7, pypy2.7, pypy3.9]
|
2022-12-18 22:54:17 +03:00
|
|
|
steps:
|
2022-12-18 23:29:26 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
2022-12-18 22:54:17 +03:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- run: pip install tox
|
|
|
|
- run: tox
|
|
|
|
env:
|
|
|
|
TOXENV: ${{ matrix.python-version }}
|
|
|
|
|
2021-01-27 05:11:27 +03:00
|
|
|
test-on-different-versions:
|
|
|
|
name: Run tests
|
2021-10-20 19:10:05 +03:00
|
|
|
runs-on: ubuntu-latest
|
2021-01-27 05:11:27 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-12-18 23:07:16 +03:00
|
|
|
python-version: [3.8, 3.9, "3.10", 3.11]
|
2021-01-27 05:11:27 +03:00
|
|
|
steps:
|
2022-12-18 23:29:26 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
2021-01-27 05:11:27 +03:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- run: pip install tox
|
|
|
|
- run: tox
|
|
|
|
env:
|
|
|
|
TOXENV: ${{ matrix.python-version }}
|
|
|
|
|
|
|
|
test-coverage:
|
|
|
|
name: Run tests with coverage
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
DEPENDENCY_INJECTOR_DEBUG_MODE: 1
|
|
|
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
steps:
|
2022-12-18 23:29:26 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
2021-01-27 05:11:27 +03:00
|
|
|
with:
|
2022-12-18 22:54:17 +03:00
|
|
|
python-version: 3.11
|
2021-01-27 05:11:27 +03:00
|
|
|
- run: pip install tox cython
|
|
|
|
- run: make cythonize
|
|
|
|
- run: tox
|
|
|
|
env:
|
|
|
|
TOXENV: coveralls
|
|
|
|
|
|
|
|
linters:
|
|
|
|
name: Run linters
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
toxenv: [flake8, pydocstyle, mypy, pylint]
|
|
|
|
steps:
|
2022-12-18 23:29:26 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
2021-01-27 05:11:27 +03:00
|
|
|
with:
|
2022-12-18 22:54:17 +03:00
|
|
|
python-version: 3.11
|
2021-01-27 05:11:27 +03:00
|
|
|
- run: pip install tox
|
|
|
|
- run: tox
|
|
|
|
env:
|
|
|
|
TOXENV: ${{ matrix.toxenv }}
|