Skip to content

Migrate Gpt3 to NNX. #990

Migrate Gpt3 to NNX.

Migrate Gpt3 to NNX. #990

name: Check the Documentation Build
on:
pull_request:
types: [opened, synchronize]
workflow_dispatch:
permissions:
contents: read
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: pip install -r dependencies/requirements/requirements_docs.txt
- name: Build documentation
run: |
sphinx-build -W -b html docs docs/_build/html