blob: c6e9bfb344bf93957b38f523e060adb7865a10f5 (
plain)
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
|
name: check
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 8 * * *"
jobs:
docs:
runs-on: ubuntu-latest
env:
PY_COLORS: 1
TOX_PARALLEL_NO_SPINNER: 1
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install tox
run: python -m pip install tox
- name: Setup run environment
run: tox -vv --notest -e docs
- name: Run check for docs
run: tox -e docs --skip-pkg-install
|