Add To GitHub projects #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: hola-mundo #Nombre del workflow | |
on: [push] #evento que lo activará | |
jobs: | |
first-github-action: #Nombre del job | |
runs-on: ubuntu-latest #Imagen en la que correrá | |
steps: #Lista de steps del job hola-mundo | |
- name: CheckoutV3 #Nombre del 1er step | |
uses: actions/checkout@v3 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Correr Script #Nombre del 2er step | |
run: python hola-mundo.py #Comando que se va ejecutar |