Add changelog for 1.2.0 #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a GitHub workflow defining a set of jobs with a set of steps. | |
# ref: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
# | |
name: Documentation | |
on: | |
pull_request: | |
paths: | |
- "docs/**" | |
- "**/docs.yml" | |
push: | |
paths: | |
- "docs/**" | |
- "**/docs.yml" | |
branches-ignore: | |
- "dependabot/**" | |
- "pre-commit-ci-update-config" | |
tags: ["**"] | |
workflow_dispatch: | |
env: | |
SPHINXOPTS: --color | |
jobs: | |
linkcheck: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
pip install -r docs/doc-requirements.txt | |
- name: make linkcheck (Verifies documentation links work) | |
run: | | |
cd docs | |
make linkcheck |