Skip to content

Test workflow #181

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
try to fix yml syntax error
  • Loading branch information
leo-step committed Jul 29, 2022
commit 49d2b04aed732078aefbaf0ac77c41144430538d
6 changes: 3 additions & 3 deletions .github/workflows/run-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:

steps:
- name: checkout repo content
uses: actions/checkout@v2 # checkout the repository content to github runner.
uses: actions/checkout@v3 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v4ß
with:
python-version: 3.9 #install the python needed
python-version: '3.9' #install the python needed
- name: install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import requests

print(requests.get("https://www.google.com").text)
print(requests.get("https://leostepanewk.com").text)