Skip to content

Commit 3d13bdd

Browse files
authored
Update docs.yml
1 parent e5c93bf commit 3d13bdd

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/docs.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,18 @@ jobs:
1717
env:
1818
GH_PAT: ${{secrets.GH_PAT}}
1919
steps:
20-
2120
- uses: actions/checkout@v2
22-
23-
- uses: conda-incubator/setup-miniconda@v2.0.0
21+
- name: Set up Python 3.8
22+
uses: actions/setup-python@v2
2423
with:
25-
miniconda-version: "latest"
26-
activate-environment: compas-dev
27-
channels: conda-forge
2824
python-version: 3.8
29-
25+
- name: Install dependencies
26+
run: |
27+
python -m pip install --upgrade pip
28+
python -m pip install cython --install-option="--no-cython-compile"
3029
- name: Install
3130
run: |
32-
conda install cython graphviz
33-
python -m pip install -r requirements-dev.txt
34-
31+
python -m pip install --no-cache-dir -r requirements-dev.txt
3532
- name: Generate docs
3633
if: ${{ success() }}
3734
run: |

0 commit comments

Comments
 (0)