Skip to content

Commit

Permalink
Modify second action
Browse files Browse the repository at this point in the history
  • Loading branch information
avilaqdaniel committed Nov 23, 2024
1 parent d3a2a31 commit 2768721
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/second-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Second Workflow
on: workflow_dispatch
jobs:
first-job:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Update Python
uses: actions/setup-pythonv4
with:
python-version: "3.13"
- name: Run script
run: python src/main.py
Empty file added .gitignore
Empty file.
5 changes: 5 additions & 0 deletions src/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
def main():
print("Hola, desde un archivo en Python")

if __name__ == "__main__":
main()

0 comments on commit 2768721

Please sign in to comment.