Skip to content

Commit 16575f6

Browse files
committed
feat(62305): fixes
1 parent d7e86c6 commit 16575f6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci-cd-python.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ jobs:
3030
- name: Setup python
3131
uses: actions/setup-python@v5
3232
with:
33-
python-version: '3.11'
33+
python-version: '3.x'
3434

3535
- name: Install dependencies
36-
run: pip install
36+
run: |
37+
python -m pip install --upgrade pip
38+
pip install -r requirements.txt
3739
3840
- name: Check code formatting
3941
run: |

0 commit comments

Comments
 (0)