Skip to content

DP-2485: pandas docu 🐼 #493

DP-2485: pandas docu 🐼

DP-2485: pandas docu 🐼 #493

Workflow file for this run

# 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