Skip to content

Commit b64bd79

Browse files
authored
Standalone gitHub Actions workflow (#6)
* First attempt at basic GitHub Actions bash test added * Added dash to correct workflow syntax * on: pull_request added to HelloWorldWorkflow Co-authored-by: cnorris <[email protected]>
1 parent d1f57e6 commit b64bd79

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Hello World Program
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
my-job:
7+
name: Hello World Test
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Print Hello
11+
env:
12+
MY_VAR: Hello,
13+
FIRST_NAME: this
14+
MIDDLE_NAME: is a
15+
LAST_NAME: test
16+
run:
17+
echo $MY_VAR $FIRST_NAME $MIDDLE_NAME $LAST_NAME.

0 commit comments

Comments
 (0)