Skip to content

Add show and saving functions (#48) #10

Add show and saving functions (#48)

Add show and saving functions (#48) #10

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.gen_random(); assert (dem.fillsinks() >= dem).z.all()"