Skip to content

Commit da6ac76

Browse files
committed
Feature: Init GitHub actions
- Added first GitHub action main.yaml;
1 parent aa1c083 commit da6ac76

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/main.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ jobs:
44
tests:
55
runs-on: ubuntu-latest
66
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 }}."
1011
- name: Check out repository code
1112
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."
1416
- name: List files in the repository
1517
run: |
1618
ls ${{ github.workspace }}

0 commit comments

Comments
 (0)