Skip to content

Commit e4e8013

Browse files
committed
github actions test
1 parent b6a04fc commit e4e8013

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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 }}."

0 commit comments

Comments
 (0)