de-de/translate #20
Workflow file for this run
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: Run UnitTests | |
on: | |
pull_request: | |
branches: | |
- dev | |
- master | |
paths-ignore: | |
- "version.py" | |
- "requirements.txt" | |
- "examples/**" | |
- ".github/**" | |
- ".gitignore" | |
- "LICENSE" | |
- "CHANGELOG.md" | |
- "MANIFEST.in" | |
- "readme.md" | |
- "scripts/**" | |
workflow_dispatch: {} | |
jobs: | |
unit_tests: | |
strategy: | |
max-parallel: 2 | |
matrix: | |
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install core repo | |
run: | | |
pip install build wheel | |
pip install . | |
- name: Install test dependencies | |
run: | | |
pip install -r requirements-dev.txt | |
- name: Cache Python dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements-dev.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip-${{ matrix.python-version }}- | |
${{ runner.os }}-pip- | |
- name: Run unittests | |
run: |- | |
pytest --cov=. --cov-report xml tests | |
- name: Upload coverage | |
env: | |
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} | |
uses: codecov/codecov-action@v3 |