Skip to content

remove setup.py: switched to uv for packaging #47

remove setup.py: switched to uv for packaging

remove setup.py: switched to uv for packaging #47

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install project and dev dependencies
run: |
uv sync --group dev
uv pip install -e .
- name: Run tests
run: uv run pytest tests/ -v
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
- name: Install project and dev dependencies
run: |
uv sync --group dev
uv pip install -e .
- name: Run ruff format check
run: uv run ruff format --check skfeature/ tests/
- name: Run ruff linting
run: uv run ruff check skfeature/ tests/