Skip to content

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

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

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

Workflow file for this run

name: Installation
on:
push:
branches: [ "main", "release"]
paths:
- '.github/workflows/install.yml'
- 'src/**'
- 'Makefile'
- 'pyproject.toml'
- 'uv.lock'
pull_request:
branches: [ "main", "release"]
paths:
- '.github/workflows/install.yml'
- 'src/**'
- 'Makefile'
- 'pyproject.toml'
- 'uv.lock'
jobs:
install:
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 install checking
run: make install
- name: PYPI install checking
run: uv pip install python3-capsolver