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

Merge pull request #474 from CSCfi/archival-notice #813

Merge pull request #474 from CSCfi/archival-notice

Merge pull request #474 from CSCfi/archival-notice #813

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:
- uses: actions/checkout@v4
- uses: rojopolis/spellcheck-github-actions@0.34.0
name: Spellcheck
code_docs:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- 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