feat: add DatabaseEmitter
implementation class
#28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@main | |
with: | |
ref: main | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@main | |
with: | |
python-version: 3.x | |
- name: Install project and dependencies | |
run: pip install . | |
- name: Install additional dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install nbconvert pytest pytest-cov | |
- name: Test with pytest | |
run: | | |
pytest --cov=process_bigraph |