Skip to content

[Docs] Upgrade to Docusaurus 3 #39

[Docs] Upgrade to Docusaurus 3

[Docs] Upgrade to Docusaurus 3 #39

Workflow file for this run

# The purpose of this workflow is to "skip" the `build` job when the changed
# code only modifies files under `/website`.
name: Build and Test
on:
push:
branches: [ master ]
paths:
- 'website/**'
pull_request:
branches: [ master ]
paths:
- 'website/**'
jobs:
build:
name: Build and Test
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8', '3.10', '3.12']
steps:
- run: 'echo "No build required."'