Skip to content

Commit 2f54fc9

Browse files
authored
Add GitHub Actions demo workflow
1 parent 3a88f63 commit 2f54fc9

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
11

2+
name: GitHub Actions Demo
3+
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
4+
on: [push]
5+
jobs:
6+
Explore-GitHub-Actions:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
10+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
11+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
12+
- name: Check out repository code
13+
uses: actions/checkout@v5
14+
- run: echo "💡 The ${{ github.repository }} 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)