Skip to content

build(deps): bump astral-sh/setup-uv from 5 to 6 #75

build(deps): bump astral-sh/setup-uv from 5 to 6

build(deps): bump astral-sh/setup-uv from 5 to 6 #75

Workflow file for this run

name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
POETRY_VIRTUALENVS_CREATE: false
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
# Install a specific version of uv.
version: "0.5.18"
- name: Install dependencies
run: make install
- name: Test Python Module Generation
run: make ci