Skip to content

Commit 09da2f8

Browse files
committed
Update GitHub Actions workflow to upgrade pip and install dependencies from requirements.txt
1 parent 3f1b19e commit 09da2f8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/update_readme.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
python-version: '3.10'
2121

2222
- name: Install dependencies
23-
run: pip install requests
23+
run: |
24+
python -m pip install --upgrade pip
25+
pip install -r requirements.txt
2426
2527
- name: Run update script
2628
run: python automata.py

0 commit comments

Comments
 (0)