Skip to content

Commit 61e1761

Browse files
committed
Fix paths
1 parent f48b43d commit 61e1761

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pylint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@ jobs:
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies (user auth)
24-
working-directory: /user-auth/graphtutorial
24+
working-directory: user-auth/graphtutorial
2525
run: |
2626
python -m pip install --upgrade pip
2727
pip install -r requirements.txt
2828
pip install pylint
2929
- name: Analyzing the code with pylint (user auth)
30-
working-directory: /user-auth/graphtutorial
30+
working-directory: user-auth/graphtutorial
3131
run: |
3232
pylint $(git ls-files '*.py')
3333
- name: Install dependencies (app auth)
34-
working-directory: /app-auth/graphapponlytutorial
34+
working-directory: app-auth/graphapponlytutorial
3535
run: |
3636
python -m pip install --upgrade pip
3737
pip install -r requirements.txt
3838
pip install pylint
3939
- name: Analyzing the code with pylint (app auth)
40-
working-directory: /app-auth/graphapponlytutorial
40+
working-directory: app-auth/graphapponlytutorial
4141
run: |
4242
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)