Skip to content

Merge PR#144 to draft-1.5 from hobu/wkt-updates #81

Merge PR#144 to draft-1.5 from hobu/wkt-updates

Merge PR#144 to draft-1.5 from hobu/wkt-updates #81

Workflow file for this run

name: Docs
on:
push:
branches: '*'
jobs:
docs:
name: Docs
runs-on: ubuntu-latest
strategy:
fail-fast: true
container: ghcr.io/osgeo/proj-docs
steps:
- uses: actions/checkout@v3
- name: Print versions
run: |
python3 --version
sphinx-build --version
- name: Lint .rst files
run: |
if find . -name '*.rst' | xargs grep -P '\t'; then echo 'Tabs are bad, please use four spaces in .rst files.'; false; fi
- name: PDF
run: |
make latexpdf
- name: Spelling
run: |
make spelling
- uses: actions/upload-artifact@v3
with:
name: PDF
path: build/latex/LAS.pdf
- uses: actions/upload-artifact@v3
with:
name: Misspelled
path: build/spelling/output.txt