commit 3deab08e9bd1f634f805bb808a66da47f3c80a02 Author: Omar Date: Wed Jul 16 14:23:37 2025 +0000 Ajouter .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)"