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

39 lines
933 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 02:15:08 +03:00
env:
TOXENV: ${{ matrix.python-version }}
2021-01-26 01:11:34 +03:00
- run: pip install tox
- run: tox
2021-01-26 01:53:53 +03:00
test-coverage:
2021-01-26 02:07:17 +03:00
name: Run tests with coverage
2021-01-26 01:53:53 +03:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
2021-01-26 02:15:08 +03:00
env:
TOXENV: coveralls
DEPENDENCY_INJECTOR_DEBUG_MODE: 1
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
- run: pip install tox
- run: pip install cython
- run: make cythonize
2021-01-26 01:53:53 +03:00
- run: tox