Fix incorrect geodesic function call by correcting latitude and longi… #724
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Docs link check" | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt install pandoc | |
python -m pip install --upgrade pip | |
pip install -r rtd_requirements.txt | |
- name: Check doc links | |
run: | | |
sphinx-build . -b linkcheck -d _build/doctrees _build/html | |
working-directory: ./doc |