Skip to content

Commit eebd82c

Browse files
authored
schedule test
1 parent d717742 commit eebd82c

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/.keep

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
on:
2+
schedule:
3+
- cron: '*/2 * * * *'
4+
5+
6+
jobs:
7+
test-schedule:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: current time print
11+
run: echo "today date is $(date)"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
on:
2+
schedule:
3+
- cron: '*/1 * * * *'
4+
5+
jobs:
6+
test_schedule:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Every time
10+
run: echo "This time is $(date)"

0 commit comments

Comments
 (0)