Skip to content

Commit 8a69d5e

Browse files
authored
Update python-app.yml
Update to use pyproject.toml
1 parent abf5821 commit 8a69d5e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/python-app.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
pip install flake8 pytest
31-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31+
# Install the package in editable mode with dev dependencies
32+
pip install -e .[dev]
3233
- name: Lint with flake8
3334
run: |
3435
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)