File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Github Actions Demo
2
+ run-name : ${{ github.actor}} is testing out Github Actions
3
+ on : [push]
4
+ jobs :
5
+ Explore-Github-Actions :
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - run : echo "The job was triggered by ${{ github.event_name}} event"
9
+ - run : echo "the job is running on a ${{runner.os}} server hosted by Github"
10
+ - run : echo "The name of your branch is ${{ github.ref}}"
11
+ - run : echo "The name of your repository is ${{ github.repository}}"
12
+ - name : Checkout the repository
13
+ uses : actions/checkout@v4
14
+ - run : echo "The ${{ github.repository }} has been cloned to the runner"
15
+ - run : echo "The workflow is now ready to test your code on the runner."
16
+ - name : List files in the repository
17
+ run : |
18
+ ls ${{ github.workspace }}
19
+ - run : echo "This job's status is ${{ job.status }}."
You can’t perform that action at this time.
0 commit comments