Skip to content

Merge commit godotengine/godot-docs@da1ef85 #295

Merge commit godotengine/godot-docs@da1ef85

Merge commit godotengine/godot-docs@da1ef85 #295

Workflow file for this run

name: Continuous integration
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Style checks via pre-commit
uses: pre-commit/[email protected]
- name: Install dependencies
run: sudo pip3 install -r requirements.txt
- name: Migrate to Redot
run: |
python migrate.py . _migrated
# Use dummy builder to improve performance as we don't need the generated HTML in this workflow.
- name: Sphinx build
run: make SPHINXOPTS='--color -W -j 4' SPHINXSOURCEDIR='./_migrated' dummy