Skip to content

Commit 2e23fad

Browse files
committed
Fix GH actions bug
Development and doc dependencies weren't being installed.
1 parent 26f57dd commit 2e23fad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install .
30+
pip install .[dev,doc]
3131
- name: Lint with flake8
3232
run: |
3333
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)