Skip to content

Commit 8a5865c

Browse files
authored
Create main.yml
1 parent 0bbb9f6 commit 8a5865c

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Hello World
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
workflow_dispatch:
7+
8+
jobs:
9+
say-hello:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Greet the world
14+
run: echo "Hello, GitHub Actions!"
15+
16+
- name: Show current date
17+
run: date
18+
19+
- name: Show runner information
20+
run: |
21+
echo "Operating System: $RUNNER_OS"
22+
echo "Architecture: $RUNNER_ARCH"

0 commit comments

Comments
 (0)