forked from gooddata/gooddata-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (30 loc) · 827 Bytes
/
Copy pathdocs.yaml
File metadata and controls
30 lines (30 loc) · 827 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
# Keep docs build to verify documentation can be built also on localhost
name: Old docs
on:
pull_request:
branches:
- master
paths:
# API documentation is generated from code so build must be triggered also for code changes
- 'gooddata-fdw/**'
- 'gooddata-pandas/**'
jobs:
docs-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
cache-dependency-path: |
tox-requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tox-requirements.txt
- name: Doc checks
run: |
make docs