Skip to content

CI: fix

CI: fix #27

Workflow file for this run

name: Python package
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@v1
with:
environment-name: test
create-args: >-
python=${{ matrix.python-version }}
cartopy
geopandas
numba
spatialpandas
pytest
pytest-cov
ruff
- name: Lint with ruff
run: |
ruff check src/datav
- name: Test with pytest
run: |
pytest