17 lines
312 B
YAML
17 lines
312 B
YAML
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)"
|