diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-07-09 00:12:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-09 00:12:32 +0200 |
| commit | 24624869b426b6e436697ee4f7b116f5db823c66 (patch) | |
| tree | 50a4e9ee103a3f9f0eb805a6dea3b5756463c96f /.github/workflows | |
| parent | cf3caffd458d3ad6122c47e58799c98cf865e1b6 (diff) | |
| parent | b5e13c2118a430758819fe097dfda48023f1089a (diff) | |
| download | PROJ-24624869b426b6e436697ee4f7b116f5db823c66.tar.gz PROJ-24624869b426b6e436697ee4f7b116f5db823c66.zip | |
Merge pull request #2298 from rouault/gh_workflows_doc_build
Move doc building (without deployment) to github action
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/doc_build.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/doc_build.yml b/.github/workflows/doc_build.yml new file mode 100644 index 00000000..4a919fa8 --- /dev/null +++ b/.github/workflows/doc_build.yml @@ -0,0 +1,21 @@ +name: Doc building + +on: [push, pull_request] + +jobs: + + doc_building: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install Requirements + run: | + sudo apt update + sudo apt install -y python3-pip python3-setuptools python3-dev python3-wheel doxygen gcc + sudo pip3 install sphinx sphinx-rtd-theme sphinxcontrib-bibtex breathe + + - name: Build doc + run: | + (cd docs; make html) |
