Skip to content

Install Poetry from pip #318

Install Poetry from pip

Install Poetry from pip #318

Workflow file for this run

name: Build and deploy documentation
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: |
virtualenv -p python3 venv
venv/bin/pip install poetry
- name: Install deps for pillow
run: sudo apt-get install -y libtiff5-dev libjpeg8-dev libopenjp2-7-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python3-tk libharfbuzz-dev libfribidi-dev libxcb1-dev
- name: Install dependencies for mkdocs-material
run: |
cd docs
../venv/bin/poetry install
- name: Build site
run: |
cd docs
../venv/bin/poetry run mkdocs build