From 7d8b4a6b1564ca9947f9324d2ce0db8ec7a95cfd Mon Sep 17 00:00:00 2001 From: ArturoS Date: Tue, 4 Jun 2024 10:10:52 -0400 Subject: [PATCH] Create imprimir.yml --- .github/workflows/imprimir.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/imprimir.yml diff --git a/.github/workflows/imprimir.yml b/.github/workflows/imprimir.yml new file mode 100644 index 0000000..2dade14 --- /dev/null +++ b/.github/workflows/imprimir.yml @@ -0,0 +1,24 @@ +name: ejemplo + +on: + schedule: + - cron: '00 0 * * *' # Runs every day at 00:00 UTC + workflow_dispatch: # Allows manual triggering + +jobs: + check_earnings: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + + - name: Run command in the vm + run: | + echo "Hola, estoy dentro de un runner" + ls -lhrt +