Skip to content

Add Sphinx docs generation (#33) #7

Add Sphinx docs generation (#33)

Add Sphinx docs generation (#33) #7

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["main"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout package
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install package
run: python -m pip install .[opensimplex]
- name: Test package
run: python -c "import topotoolbox as topo; dem = topo.GridObject.gen_random(); assert (dem.fillsinks() >= dem).z.all()"