1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-11-27 05:41:49 +03:00
Files
esp8266/.github/workflows/documentation.yml
dependabot[bot] 7b0ac41694 Bump actions/checkout from 5 to 6 (#9296)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-25 14:59:45 +03:00

32 lines
642 B
YAML

# Ensure Sphinx can build the documentation properly.
name: Documentation
on:
pull_request:
permissions:
contents: read
jobs:
documentation:
name: Sphinx build
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Build documentation
run: |
pushd doc/
python3 -mvenv _venv
./_venv/bin/pip install -r requirements.txt
env SPHINXBUILD=$(pwd)/_venv/bin/sphinx-build ../tests/ci/build_docs.sh
popd