Skip to content

Commit 68c892f

Browse files
committed
create main.yml workflow
Signed-off-by: Dhruva Gole <goledhruva@gmail.com>
1 parent a963298 commit 68c892f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: [push]
2+
3+
jobs:
4+
hello_world_job:
5+
runs-on: ubuntu-latest
6+
name: A job to say hello
7+
steps:
8+
- name: Hello world action step
9+
id: hello
10+
uses: actions/arduino-core-testing
11+
with:
12+
who-to-greet: 'Mona the Octocat'
13+
# Use the output from the `hello` step
14+
- name: Get the output time
15+
run: echo "The time was "
16+

0 commit comments

Comments
 (0)