Skip to content

run doc test workflow also on readme change #14

run doc test workflow also on readme change

run doc test workflow also on readme change #14

Workflow file for this run

name: Test Documentation Build
on:
pull_request:
paths:
- aiorem/**
- **/*.rst

Check failure on line 6 in .github/workflows/doc_build_test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/doc_build_test.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
push:
branches:
- main
jobs:
test-sphinx-build:
name: test-sphinx-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -W ignore -m pip install --upgrade pip
python -W ignore -m pip install -r requirements-dev.txt
- name: Build docs
run: sphinx-build docs/source docs/build/html -W --keep-going -j auto