Skip to content

Added data_presentation.ipynb with combined plot #90

Added data_presentation.ipynb with combined plot

Added data_presentation.ipynb with combined plot #90

Workflow file for this run

name: Test with Pytest
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with Pytest
if: always()
run: |
pytest -v $(git ls-files 'test_*.py')