Skip to content

Add Path for windows machines #249

Add Path for windows machines

Add Path for windows machines #249

Workflow file for this run

name: Publish Github pages
on:
push:
branches:
- master
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Ubuntu dependencies
run: sudo apt-get install graphviz pandoc
- name: Install Poetry
uses: snok/install-poetry@v1
with:
python-version: 3.12
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
- name: Install dependencies with river
run: poetry install --no-interaction
shell: bash
- name: Build docs
run: |
cd benchmarks
poetry run python render.py
mkdocs build
- name: Deploy docs
run: mkdocs gh-deploy --force