Skip to content

make clearer how to install with requirements #18

make clearer how to install with requirements

make clearer how to install with requirements #18

Workflow file for this run

name: site deploy
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
cache: 'pip'
- run: pip install -r requirements.txt
- name: Deploy site
run: mkdocs gh-deploy --force