Adding Codespaces Documentation #1310
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
name: Tests | |
on: [pull_request, push, workflow_dispatch] | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
test: | |
name: Check build, markup, and links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3" | |
cache: pip | |
- name: Build docs | |
run: make html | |
- name: Check markup | |
run: make check | |
- name: Link check | |
run: make linkcheck | |
continue-on-error: true |