test #2
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 | |
on: | |
workflow_dispatch: | |
# uncomment to make it runnable after each push into master | |
#push: | |
# branches: [ master ] | |
#pull_request: | |
# branches: [ master ] | |
jobs: | |
pytest: | |
name: pytest | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.10] | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.10 | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
pip install -U pytest>=7.2.0 pytest-cov>=4.0.0 | |
pip install -U -r src/requirements.txt | |
- name: Testing | |
run: | | |
PYTHONPATH=src/ pytest tests/ --cov=mylib --cov-report=xml | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage.xml, | |
fail_ci_if_error: true | |
verbose: true |