Skip to content

Remove examples/pipefunc2.py #149

Remove examples/pipefunc2.py

Remove examples/pipefunc2.py #149

Workflow file for this run

name: pytest
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install tuitorial
run: |
uv sync
- name: Run pytest
run: |
uv run pytest
- name: Upload coverage to Codecov
if: matrix.python-version == '3.13'
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}