Skip to content

Commit 3843075

Browse files
committed
Fix GH workflow
1 parent 3dcd685 commit 3843075

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install --editable .
21-
pip install '.[dev]'
21+
pip install '.[lint]'
2222
- name: Analysing the code with pylint
2323
run: |
2424
pylint $(git ls-files '*.py')

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ dependencies = [
1717
"PyYAML>=6.0"
1818
]
1919
[project.optional-dependencies]
20-
lint = ['pre-commit', 'pylint', 'mypy']
20+
lint = ['pylint', 'mypy']
21+
dev = ['pre-commit']
2122

2223
[project.scripts]
2324
beku = "beku:main"

0 commit comments

Comments
 (0)