[Docs] Upgrade to Docusaurus 3 #39
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
# 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."' |