-
Notifications
You must be signed in to change notification settings - Fork 6
35 lines (30 loc) · 707 Bytes
/
docs.yml
File metadata and controls
35 lines (30 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: docs
on:
push:
branches:
- develop
- main
pull_request:
jobs:
run:
continue-on-error: True
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
timeout-minutes: 30
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install tox
# Install markdown-spellcheck
sudo npm install -g markdown-spellcheck
- name: Generate Documentation
run: tox -e docs
- name: Install markdown-spellcheck
run: tox -e spell-check