Skip to content

Commit 7833e7b

Browse files
Update first-action.yml
1 parent f157fd6 commit 7833e7b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/first-action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
uses: actions/setup-python@v4
1313
with:
1414
python-version: '3.x'
15+
- name: Install Dependencies
16+
run: |
17+
python -m pip install --upgrade pip
18+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
1519
- name: Run Test
1620
run: python test.py
21+
1722

0 commit comments

Comments
 (0)