Skip to content

Bump ruff from 0.13.0 to 0.14.1 #169

Bump ruff from 0.13.0 to 0.14.1

Bump ruff from 0.13.0 to 0.14.1 #169

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Check formatting
run: uv run ruff format --check
- name: Check markdown/yaml formatting
uses: dprint/[email protected]
- name: Run linting
run: uv run ruff check
- name: Run type checking
run: uv run pyrefly check
- name: Run tests
run: uv run pytest
- name: Upload coverage to Coveralls
if: matrix.python-version == '3.13'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage.lcov
- name: Test production dependencies
run: ./scripts/test-production-install.sh