feat: Fix Python versions used in CI (#6725)

fix: Fix Python versions used in CI
This commit is contained in:
Christophe Bornet 2025-02-20 12:15:05 +01:00 committed by GitHub
commit a4355caabe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 21 additions and 52 deletions

View file

@ -49,23 +49,10 @@ jobs:
id: setup-node
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
- name: "Setup Environment"
uses: ./.github/actions/setup-uv
with:
python-version: ${{ matrix.python-version }}
- name: Restore uv cache
uses: actions/cache@v4
with:
path: /tmp/.uv-cache
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
restore-keys: |
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
uv-${{ runner.os }}
- name: Install the project
run: uv sync --dev
- name: Run unit tests
@ -86,23 +73,10 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.ref }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
- name: "Setup Environment"
uses: ./.github/actions/setup-uv
with:
python-version: ${{ matrix.python-version }}
- name: Restore uv cache
uses: actions/cache@v4
with:
path: /tmp/.uv-cache
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
restore-keys: |
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
uv-${{ runner.os }}
- name: Install the project
run: uv sync --dev
- name: Run integration tests
@ -122,6 +96,8 @@ jobs:
ref: ${{ inputs.ref || github.ref }}
- name: "Setup Environment"
uses: ./.github/actions/setup-uv
with:
python-version: ${{ matrix.python-version }}
- name: Check Version
id: check-version