mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-21 02:31:50 +03:00
27 lines
416 B
YAML
27 lines
416 B
YAML
name: Sphinx
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
tags:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
|
|
sphinx-doc-check:
|
|
name: Sphinx
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Build docs
|
|
run: |
|
|
sudo apt-get install -y python3-sphinx
|
|
pip3 install -r docs/requirements.txt
|
|
cd docs
|
|
make html
|