Skip to content

feat!(uv): replace rye with uv #1120

feat!(uv): replace rye with uv

feat!(uv): replace rye with uv #1120

Workflow file for this run

# matrixctl
# Copyright (c) 2020 Michael Sasser <Michael@MichaelSasser.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
---
name: Python CI
on:
push:
branches: ["main"]
paths-ignore: ["*.md"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
# - name: "Set Python Version ${{ matrix.python-version }}"
# run: echo '${{ matrix.python-version }}' > .python-version
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run pre-commit
run: uv run pre-commit run --all-files
- name: Build docs
working-directory: ./docs
run: make html
- name: Test with pytest
run: uv run pytest tests