Skip to content

Commit e23f412

Browse files
committed
fix workflow
1 parent 8615795 commit e23f412

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/build-wheels.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,6 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23-
- name: Set up Python
24-
id: setup-python
25-
uses: actions/setup-python@v4
26-
with:
27-
python-version: ${{ matrix.python-version }}
28-
29-
- name: Install Poetry
30-
uses: snok/install-poetry@v1
31-
with:
32-
virtualenvs-create: true
33-
virtualenvs-in-project: true
34-
35-
- name: Load cached venv
36-
id: cached-pip-wheels
37-
uses: actions/cache@v3
38-
with:
39-
path: ~/.cache
40-
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
41-
4223
# Ubuntu: Install CGAL and dependencies
4324
- name: Install CGAL on Ubuntu
4425
if: runner.os == 'Linux'
@@ -73,6 +54,25 @@ jobs:
7354
vcpkg integrate install
7455
vcpkg install cgal:x64-windows eigen3:x64-windows gmp:x64-windows mpfr:x64-windows
7556
57+
- name: Set up Python
58+
id: setup-python
59+
uses: actions/setup-python@v4
60+
with:
61+
python-version: ${{ matrix.python-version }}
62+
63+
- name: Install Poetry
64+
uses: snok/install-poetry@v1
65+
with:
66+
virtualenvs-create: true
67+
virtualenvs-in-project: true
68+
69+
- name: Load cached venv
70+
id: cached-pip-wheels
71+
uses: actions/cache@v3
72+
with:
73+
path: ~/.cache
74+
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
75+
7676
- name: Install dependencies
7777
run: poetry install --no-interaction --no-root
7878

0 commit comments

Comments
 (0)