Skip to content

Add disk cleanup step to CI #1

Add disk cleanup step to CI

Add disk cleanup step to CI #1

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- "**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup uv
uses: astral-sh/setup-uv@v6
with:
version: "latest"
python-version: ${{ matrix.python-version }}
activate-environment: true
- name: Install dependencies and run common tests
run: |
uv pip install pytest pytest-cov
uv run pytest tests/test.py
- name: Run Ubuntu-specific tests
if: matrix.os == 'ubuntu-latest'
run: uv run pytest python/fast_plaid/filtering/filtering.py