Update workflow configuration and replace Altair with Matplotlib for signal visualizations

This commit is contained in:
Edgar P. Burkhart 2025-02-27 17:32:53 +01:00
parent 6cc2200683
commit 0503034e40
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
6 changed files with 115 additions and 61 deletions

View file

@ -9,12 +9,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize virtual environment
run: /usr/bin/python -m venv .env
run: /usr/bin/python -m venv .venv
- name: Install dependencies
run: ./.env/bin/pip install mystmd jupyter jupyterlab_myst ipykernel altair pandas
run: ./.venv/bin/pip install -r requirements.txt
- name: Build static HTML
run: |
. .env/bin/activate
. .venv/bin/activate
myst build --execute --html
- name: Copy files
run: |