#315 Issue for IVV 103(#316) #7
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: Show Current Time | |
# This specifies when the workflow should run. In this case, it runs on every push to the main branch. | |
on: | |
push: | |
branches: | |
- main | |
# This is the job that will be executed. Jobs run in parallel by default. | |
jobs: | |
display-time: | |
# This job runs on the latest Ubuntu runner provided by GitHub Actions | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job. | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Show current time | |
run: | | |
echo "The current time is $(date)" |