Skip to content

docs: fix links

docs: fix links #114

Workflow file for this run

name: install
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
install:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Pip install this
run: |
python -m pip install --upgrade pip
python -m pip install .[dev,docs]