Skip to content

test(fs): add tests for with_name and with_stem methods #28

test(fs): add tests for with_name and with_stem methods

test(fs): add tests for with_name and with_stem methods #28

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [
"3.10",
"3.11",
"3.12",
"3.13",
"3.14"
]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra test --python ${{ matrix.python-version }}
- name: Run pytest
run: uv run --python ${{ matrix.python-version }} pytest -v