Skip to content

Commit

Permalink
Fetching the requests Python module on workflow pipelines.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Oct 28, 2024
1 parent f58f7bb commit 6953fc2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build_ci_darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- name: Build Zhivo
run: |
python -m pip install requests
python build.py
- name: Build verification
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:

- name: Build Zhivo
run: |
python -m pip install requests
python build.py
- name: Build verification
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build_ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
uses: Jimver/[email protected]

- name: Build Zhivo
run: python build.py
run: |
python -m pip install requests
python build.py
- name: Build verification
run: |
Expand Down

0 comments on commit 6953fc2

Please sign in to comment.