style(pre-commit.ci): pre-commit autoupdate #243
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: tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
include: | |
- os: macos-latest | |
python-version: "3.13" | |
- os: windows-latest | |
python-version: "3.13" | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mamba-org/setup-micromamba@v2 | |
with: | |
environment-name: test-env | |
create-args: >- | |
python=${{ matrix.python-version }} | |
gdal>=3.3 | |
tox | |
tox-gh | |
- name: run tests suite | |
run: tox -vv | |
env: | |
TOX_GH_MAJOR_MINOR: ${{ matrix.python-version }} | |
CONDA_EXE: mamba | |
- name: upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
- name: Test notebooks | |
run: | | |
git clone https://github.com/martibosch/pylandstats-notebooks | |
cd pylandstats-notebooks | |
mamba env update -f environment.yml | |
snakemake -c1 register_ipykernel | |
snakemake -c1 lulc_tifs elev_zones | |
snakemake -c1 run_notebooks | |
cd .. | |
- name: list files | |
run: ls -l . |