File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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'
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
You can’t perform that action at this time.
0 commit comments