File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 4
4
tests :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
- - run : echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
8
- - run : echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
9
- - run : echo "🔎 The name of branch is ${{ github.ref }} and repository is ${{ github.repository }}."
7
+ - run : |
8
+ echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
9
+ echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
10
+ echo "🔎 The name of branch is ${{ github.ref }} and repository is ${{ github.repository }}."
10
11
- name : Check out repository code
11
12
uses : actions/checkout@v3
12
- - run : echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
13
- - run : echo "🖥️ The workflow is now ready to test code on the runner."
13
+ - run : |
14
+ echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
15
+ echo "🖥️ The workflow is now ready to test code on the runner."
14
16
- name : List files in the repository
15
17
run : |
16
18
ls ${{ github.workspace }}
You can’t perform that action at this time.
0 commit comments