Skip to content

Create FUNDING.yml

Create FUNDING.yml #10

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- main
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
uses: actions/setup-python@v3
with:
python-version: '3.10'
cache: 'pip'
- run: pip install -r requirements.txt
- name: Deploy into github pages
run: python -m mkdocs gh-deploy