Skip to content

Merge pull request #8 from HelmholtzAI-Consultants-Munich/feats/codecov #11

Merge pull request #8 from HelmholtzAI-Consultants-Munich/feats/codecov

Merge pull request #8 from HelmholtzAI-Consultants-Munich/feats/codecov #11

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
workflow_call:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 12
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.10"]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
- name: Test with pytest
run: pytest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: HelmholtzAI-Consultants-Munich/EffiDict