Skip to content

[github-actions] Bump astral-sh/setup-uv from 5 to 7 #230

[github-actions] Bump astral-sh/setup-uv from 5 to 7

[github-actions] Bump astral-sh/setup-uv from 5 to 7 #230

Workflow file for this run

name: Build
on:
push:
branches: [ "main", "release"]
paths:
- '.github/workflows/build.yml'
- 'src/**'
- 'Makefile'
- 'pyproject.toml'
- 'uv.lock'
pull_request:
branches: [ "main", "release"]
paths:
- '.github/workflows/build.yml'
- 'src/**'
- 'Makefile'
- 'pyproject.toml'
- 'uv.lock'
jobs:
test_build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Local build checking
run: make build