Skip to content

Add link to funding section in README. #23

Add link to funding section in README.

Add link to funding section in README. #23

Workflow file for this run

name: Build docs
on:
push:
branches:
- master
- dev
jobs:
build:
strategy:
matrix:
python-version: [ 3.10.11 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r docs/requirements.txt
- name: Build docs
run: |
make docs
- name: Upload docs
uses: actions/upload-artifact@v4
with:
name: docs
path: site