From 3deab08e9bd1f634f805bb808a66da47f3c80a02 Mon Sep 17 00:00:00 2001 From: Omar Date: Wed, 16 Jul 2025 14:23:37 +0000 Subject: [PATCH] Ajouter .github/workflows/test.yml --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..2cc35cc --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: Test Cron Workflow + +on: + schedule: + - cron: '25 14 * * *' + +jobs: + test-cron: + runs-on: ubuntu-latest + steps: + - name: Checkout default branch + uses: actions/checkout@v4 + + - name: Print timestamp + run: | + echo "🔔 Ceci est un test – heure actuelle : $(date)"