Skip to content

Bump astral-sh/setup-uv from 7.2.1 to 7.3.0 #69

Bump astral-sh/setup-uv from 7.2.1 to 7.3.0

Bump astral-sh/setup-uv from 7.2.1 to 7.3.0 #69

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install the latest version of uv
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
- name: Install python
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --frozen
- name: Check formatting
run: make check-format
- name: Check linting
run: make check-fix
- name: Run tests
run: make test
- name: Build package
run: uv build