Skip to content

Commit 0e39b42

Browse files
updated the path
1 parent d9e2542 commit 0e39b42

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
paths:
66
- 'src/backend/**/*.py'
77
- 'src/mcp_server/**/*.py'
8-
- '.github/workflows/requirements.txt'
8+
- '.github/requirements.txt'
99
- '.flake8'
1010
- '.github/workflows/pylint.yml'
1111
workflow_dispatch:
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31-
pip install -r .github/workflows/requirements.txt
31+
pip install -r .github/requirements.txt
3232
pip install flake8 # Ensure flake8 is installed explicitly
3333
3434
- name: Run flake8 and pylint

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- 'src/**/pyproject.toml'
1414
- 'pytest.ini'
1515
- 'conftest.py'
16-
- '.github/workflows/requirements.txt'
16+
- '.github/requirements.txt'
1717
- '.github/workflows/test.yml'
1818
pull_request:
1919
types:
@@ -31,7 +31,7 @@ on:
3131
- 'src/mcp_server/**/*.py'
3232
- 'pytest.ini'
3333
- 'conftest.py'
34-
- '.github/workflows/requirements.txt'
34+
- '.github/requirements.txt'
3535
- 'src/**/pyproject.toml'
3636
- '.github/workflows/test.yml'
3737

@@ -56,7 +56,7 @@ jobs:
5656
- name: Install dependencies
5757
run: |
5858
python -m pip install --upgrade pip
59-
pip install -r .github/workflows/requirements.txt
59+
pip install -r .github/requirements.txt
6060
6161
- name: Check if test files exist
6262
id: check_tests

0 commit comments

Comments
 (0)