Skip to content

Commit b7b6729

Browse files
committed
Fix working-directory to what each action wants
1 parent 03b5f8e commit b7b6729

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/lint.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
name: Test Neureka
1+
name: Linting
22
on: push
33
jobs:
44
python-lint:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
88
- uses: psf/black@stable
9-
working-directory: test
9+
with:
10+
src: "test"
1011
- uses: jakebailey/pyright-action@v2
11-
working-directory: test
12+
with:
13+
working-directory: test
1214
- uses: isort/isort-action@v1
13-
working-directory: test
1415
with:
15-
requirements-files: "requirements-pip.txt"
16+
sort-paths: "test"
17+
requirements-files: "requirements-pip.txt"

0 commit comments

Comments
 (0)