Skip to content

Commit 86877ad

Browse files
committed
fix: linter workflow wrong command
1 parent f6a4e06 commit 86877ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626

2727
- name: Install dependencies
2828
id: install-deps
29-
run: py -m pip install -U -r requirements_dev.txt
29+
run: pip install -U -r requirements_dev.txt
3030

3131
- name: Run mypy
32-
run: py -m mypy ./src/ ./tests/
32+
run: python3 -m mypy ./src/ ./tests/
3333

3434
- name: Run flake8
3535
if: ${{ always() && steps.install-deps.outcome == 'success' }}

0 commit comments

Comments
 (0)