1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- name: tests
- on:
- push:
- pull_request:
- schedule:
- - cron: '0 20 * * 5'
- jobs:
- code-format:
- runs-on: ubuntu-18.04
- strategy:
- matrix:
- python-version:
- - 3.8
- steps:
- - uses: actions/checkout@v1
- - uses: actions/setup-python@v1
- with:
- python-version: ${{ matrix.python-version }}
- - run: pip install --upgrade pipenv==2020.8.13
- - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
- env:
- PYTHON_VERSION: ${{ matrix.python-version }}
- - run: pipenv graph
- - run: pipenv run black --check .
- tests:
- runs-on: ubuntu-18.04
- strategy:
- matrix:
- python-version:
- - 3.5
- - 3.6
- - 3.7
- - 3.8
- - 3.9
- fail-fast: false
- steps:
- - uses: actions/checkout@v1
- - uses: actions/setup-python@v1
- with:
- python-version: ${{ matrix.python-version }}
- - run: pip install --upgrade pipenv==2020.8.13
- - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
- env:
- PYTHON_VERSION: ${{ matrix.python-version }}
- - run: pipenv graph
- - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=90
- - run: pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
-
- - run: pipenv run pylint tests/*
- - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
-
-
-
- - run: pip install 'coveralls>=2.1.0,<4'
- - run: coveralls
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
- COVERALLS_SERVICE_NAME: github
|