Skip to content

examples BIG update #13

examples BIG update

examples BIG update #13

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install .[dev]
- name: Run Ruff Linter
run: ruff check . --exclude examples
- name: Run tests with coverage
run: python -m pytest --cov=src/pipeoptz