Skip to content

Commit cd5a695

Browse files
committed
Remove redundant Python version retrieval step and adjust dependency installation in CI workflow
1 parent 8ccf7a0 commit cd5a695

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

.github/workflows/ci-test-python.yaml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,6 @@ jobs:
3535
uses: astral-sh/setup-uv@v6
3636
with:
3737
python-version: ${{ matrix.python-version }}
38-
- name: Get Python Version
39-
shell: bash
40-
run: |
41-
set -eux
42-
python --version > python_version.txt
43-
cat python_version.txt
44-
- name: Install Dependencies
45-
shell: bash
46-
run: |
47-
set -eux
48-
uv sync --locked --group test
4938
- name: Install Eigen3 on linux
5039
if: ${{ matrix.os == 'ubuntu-latest'}}
5140
run: |
@@ -67,6 +56,11 @@ jobs:
6756
vcpkg --triplet x64-windows-static install nlohmann-json
6857
vcpkg --triplet x64-windows install nlohmann-json
6958
vcpkg integrate install
59+
- name: Install Dependencies
60+
shell: bash
61+
run: |
62+
set -eux
63+
uv sync --locked --group test
7064
- name: Build & Install
7165
if: ${{ matrix.os == 'ubuntu-latest'}}
7266
shell: bash

0 commit comments

Comments
 (0)