Skip to content

Commit 9d757ab

Browse files
committed
refactor: move requirements.txt to config directory
- Moved requirements.txt to .github/workflows/config/ for better organization - Updated all workflow references to new path
1 parent c79e042 commit 9d757ab

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/python-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
pip install -r .github/workflows/requirements.txt
32+
pip install -r .github/workflows/config/requirements.txt
3333
3434
- name: Run Black formatter check
3535
run: |
@@ -50,7 +50,7 @@ jobs:
5050
- name: Install dependencies
5151
run: |
5252
python -m pip install --upgrade pip
53-
pip install -r .github/workflows/requirements.txt
53+
pip install -r .github/workflows/config/requirements.txt
5454
5555
- name: Run Flake8
5656
run: |
@@ -71,7 +71,7 @@ jobs:
7171
- name: Install dependencies
7272
run: |
7373
python -m pip install --upgrade pip
74-
pip install -r .github/workflows/requirements.txt
74+
pip install -r .github/workflows/config/requirements.txt
7575
7676
- name: Run Pydocstyle
7777
run: |
@@ -92,7 +92,7 @@ jobs:
9292
- name: Install dependencies
9393
run: |
9494
python -m pip install --upgrade pip
95-
pip install -r .github/workflows/requirements.txt
95+
pip install -r .github/workflows/config/requirements.txt
9696
9797
- name: Download check_docstrings.py
9898
run: |

0 commit comments

Comments
 (0)