Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

add archival notice #572

add archival notice

add archival notice #572

Workflow file for this run

name: Documentation Checks
on: [push]
jobs:
spell_check:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Spell check install
run: curl -L https://git.io/misspell | bash
- name: Spell check docs
run: bin/misspell -error docs/*
code_docs:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.8]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run docs tests
run: tox -e docs