[bot] bump to 1.27.0 #619
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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@v4 | |
- name: Set up python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: '.python-version' | |
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 |