Skip to content

Merge pull request #58 from DroneML/57_crs_in_qgis #116

Merge pull request #58 from DroneML/57_crs_in_qgis

Merge pull request #58 from DroneML/57_crs_in_qgis #116

Workflow file for this run

name: documentation
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-documentation:
name: Build documentation
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Python info
shell: bash -e {0}
run: |
which python
python --version
- name: Upgrade pip and install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install .[dev,publishing]
- name: Install pandoc using apt
run: sudo apt install pandoc
- name: Build documentation
run: make coverage doctest html
working-directory: docs