Skip to content

build(deps-dev): bump ruff from 0.15.0 to 0.15.1 #405

build(deps-dev): bump ruff from 0.15.0 to 0.15.1

build(deps-dev): bump ruff from 0.15.0 to 0.15.1 #405

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Continuous Integration (Python)
on: push
jobs:
build:
# environment: project_name
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.14"] # Add more Python versions to test here
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: |
uv sync --all-groups
- name: Lint with ruff
run: uv run ruff check . --output-format=github
- name: Check types with ty
run: uv run ty check . --output-format=github
- name: Test with pytest
run: uv run pytest .
- name: Coveralls
env:
github-token: ${{ secrets.GITHUB_TOKEN }}
uses: coverallsapp/[email protected]
- name: Check docs
run: uv run mkdocs build