Skip to content

Commit

Permalink
Create imprimir.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
artfisica authored Jun 4, 2024
1 parent c0f90b1 commit 7d8b4a6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/imprimir.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7d8b4a6

Please sign in to comment.