Skip to content

initial workflow for unit test run #1

initial workflow for unit test run

initial workflow for unit test run #1

Workflow file for this run

name: Unit test run
on:
push:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements_pip.txt ]; then pip install -r requirements_pip.txt; fi
- name: Test with pytest
run: python -m coverage run --branch --source=src,data_handling,utils -m pytest ./test/