auto_lang #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 定时任务 | |
on: | |
schedule: | |
- cron: '* * * * *' # 每分钟运行一次 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 打印当前时间 | |
run: echo "当前时间是 $(date)" |