Skip to content

Merge pull request #30 from fabian-sp/f-config-manager #147

Merge pull request #30 from fabian-sp/f-config-manager

Merge pull request #30 from fabian-sp/f-config-manager #147

Workflow file for this run

# Unit test action
name: Testing
on:
push:
branches: [ main ]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
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'
cache: 'pip' # caching pip dependencies, see https://github.com/actions/setup-python#caching-packages-dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest
pytest tests/ -v