forked from gooddata/gooddata-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (31 loc) · 849 Bytes
/
Copy pathdocs.yaml
File metadata and controls
31 lines (31 loc) · 849 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
# Keep docs build to verify documentation can be built also on localhost
name: 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/**'
- 'gooddata-sdk/**'
jobs:
docs-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
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