Skip to content

Commit f2c59a8

Browse files
fixed requirements install
1 parent 9d24832 commit f2c59a8

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.github/workflows/deploy_pages.yaml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,10 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
pip install flake8 pytest
29-
if [ -f Sources/requirements.txt ]; then pip install -r Sources/requirements.txt; fi
30-
# - name: Lint with flake8
31-
# run: |
32-
# stop the build if there are Python syntax errors or undefined names
33-
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
34-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
35-
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
36-
#- name: Test with pytest
37-
# run: |
38-
# pytest
28+
pip install -r requirements.txt
3929
- name: Build static site
4030
run: |
41-
make html
31+
make html
4232
4333
- name: Deploy
4434
uses: peaceiris/actions-gh-pages@v4

0 commit comments

Comments
 (0)