Skip to content

added API docs and demo #11

added API docs and demo

added API docs and demo #11

Workflow file for this run

name: Python application
on:
push:
branches: [ main, simple_yaml_with_tests ]
pull_request:
branches: [ main, simple_yaml_with_tests ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run tests
run: |
make unit-tests