Skip to content

Merge pull request #60 from fzi-forschungszentrum-informatik/LEFTIST #138

Merge pull request #60 from fzi-forschungszentrum-informatik/LEFTIST

Merge pull request #60 from fzi-forschungszentrum-informatik/LEFTIST #138

Workflow file for this run

name: unit-tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python: ['3.10'] #, '3.9', '3.10']
os: [ubuntu-latest ] #, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Cache Python dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-${{ matrix.python }}-pip-
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install .[dev]
- name: pytest
run: pytest --cov .
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
with:
token: 2b898413-82cb-4304-9ce2-a51eb8b7b2c0
files: ./coverage.xml