feat: Stack regions and Layer partitions #325
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
name: Check public API | |
on: [push, pull_request] | |
jobs: | |
check-documentation: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- name: Setup Python environment | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e . | |
- name: Check public API | |
run: python .github/devops/generate_public_api.py --check |