Skip to content

build(deps): bump astral-sh/setup-uv from 8.3.2 to 9.0.0 #373

build(deps): bump astral-sh/setup-uv from 8.3.2 to 9.0.0

build(deps): bump astral-sh/setup-uv from 8.3.2 to 9.0.0 #373

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
environment: Development
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v9.0.0
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: uv sync --dev
- name: Run pytest
run: uv run pytest --cov-report=xml --cov=symspellpy
- name: Upload code coverage
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}