Skip to content

UV replacement of Poetry #1615

UV replacement of Poetry

UV replacement of Poetry #1615

Workflow file for this run

---
name: Integration
"on":
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["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 }}
cache: "pip"
- name: Upgrade pip
run: |
pip install --constraint=.github/workflows/constraints.txt pip
pip --version
- name: Install UV
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: uv sync --all-extras --frozen
- name: Test integration
run: ./scripts/test_integration.sh