python-dependency-injector/.github/workflows/tests.yml

40 lines
978 B
YAML
Raw Normal View History

2021-01-26 01:11:34 +03:00
name: Tests
2021-01-26 01:59:42 +03:00
on: [push, workflow_dispatch]
2021-01-26 01:11:34 +03:00
jobs:
2021-01-26 01:53:53 +03:00
test-with-versions:
2021-01-26 01:11:34 +03:00
name: Run tests
runs-on: ubuntu-latest
2021-01-26 01:18:34 +03:00
strategy:
matrix:
2021-01-26 01:39:00 +03:00
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3]
2021-01-26 01:11:34 +03:00
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
2021-01-26 01:18:34 +03:00
python-version: ${{ matrix.python-version }}
2021-01-26 01:11:34 +03:00
- run: pip install tox
- run: tox
env:
2021-01-26 01:53:53 +03:00
TOXENV: ${{ matrix.python-version }}
test-coverage:
name: Run tests with coverage and report results to Coveralls.io
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- run: |
pip install tox
pip install cython
make cythonize
- run: tox
env:
TOXENV: coveralls
DEPENDENCY_INJECTOR_DEBUG_MODE: 1
COVERALLS_REPO_TOKEN: ${{ COVERALLS_REPO_TOKEN }}