Skip to content

Clarify kml_fast vs kml_strict behavior in README #7

Clarify kml_fast vs kml_strict behavior in README

Clarify kml_fast vs kml_strict behavior in README #7

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Lint with ruff
run: ruff check src/ tests/
- name: Run tests
run: pytest -q
test-plotnine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install with plotnine
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev,plot]"
- name: Run tests
run: pytest -q