Schedule #2
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
# | |
on: | |
schedule: | |
- cron: '0 */4 * * *' | |
jobs: | |
hello_world: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo current time is now | |
run: echo "The current server time is $(date)" |