Skip to content

Commit e8a10d4

Browse files
committed
ADD: git workflow dependencies
1 parent aa5754f commit e8a10d4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build-deploy.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,12 @@ jobs:
1818
uses: actions/checkout@v2
1919
- name: Say hi to kris
2020
run: echo "Hi Kris!"
21+
- name: Install python version 3.9
22+
uses: actions/setup-python@v2
23+
with:
24+
python-version: 3.9
25+
- name: Upgrade pip
26+
run: python -m pip install --upgrade pip
27+
- name: Install dependencies
28+
run: pip install -r requirements.txt
29+

0 commit comments

Comments
 (0)