Skip to content

replacing slashes

replacing slashes #24

Workflow file for this run

name: Testing
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
shell: powershell
run: |
if (Test-Path "requirements.txt") {
pip install -r requirements.txt
}
- name: Install Jupyter
run: pip install jupyter nbconvert
- name: Run notebook
run: jupyter nbconvert --to notebook --execute 3_OUTPUT/3_svr/SVMDailywoutMeso.ipynb --inplace