Skip to content

update output docstring #4

update output docstring

update output docstring #4

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
multi_platform_test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: Test python${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repository
uses: actions/checkout@main
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.4"
- name: Install swmm-pandas
run: |
uv sync --all-extras -p ${{ matrix.python-version }}
- name: run unit tests
run: uv run pytest