post-review-checks #293
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: post-review-checks | |
on: | |
pull_request_review: | |
types: [submitted] | |
workflow_dispatch: | |
jobs: | |
faker_docs: | |
name: Faker Docs I18N | |
runs-on: SFDO-Tooling-Ubuntu | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.11" | |
- name: Set up uv | |
uses: SFDO-Tooling/setup-uv@main | |
with: | |
version: "0.5.0" | |
enable-cache: true | |
- name: Install dependencies | |
run: | | |
python -VV | |
pip install mkdocs mkdocs-exclude-search | |
# docs build requires a proper install | |
pip install . | |
- name: Make Docs | |
run: make docs |