Skip to content

Commit c14a77a

Browse files
committed
Initial commit
0 parents  commit c14a77a

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Simple workflow
2+
run-name: Simple workflow
3+
on: workflow_dispatch
4+
jobs:
5+
Explore-GitHub-Actions:
6+
runs-on: runner-set
7+
steps:
8+
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
9+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted outside of GitHub!"
10+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
11+
- name: Check out repository code
12+
uses: actions/checkout@v4
13+
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
14+
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
15+
- name: List files in the repository
16+
run: |
17+
ls ${{ github.workspace }}
18+
- name: Get hostname and runner details
19+
run: |
20+
set -x
21+
hostname
22+
uname -a
23+
cat /etc/os-release
24+
- run: echo "🍏 This job's status is ${{ job.status }}."

0 commit comments

Comments
 (0)