diff --git a/.github/workflows/hello-world.yml b/.github/workflows/hello-world.yml new file mode 100644 index 0000000..74a630b --- /dev/null +++ b/.github/workflows/hello-world.yml @@ -0,0 +1,11 @@ +name: Hello World Workflow + +on: + push: + +jobs: + say-hello: + runs-on: ubuntu-latest + steps: + - name: Print a message + run: echo "hellow from GH actions" \ No newline at end of file diff --git a/dev/.github/.gitignore b/dev/.github/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/dev/.github/Team-Group-Project b/dev/.github/Team-Group-Project new file mode 160000 index 0000000..6aa0330 --- /dev/null +++ b/dev/.github/Team-Group-Project @@ -0,0 +1 @@ +Subproject commit 6aa0330785da1da44889c8b961bd9e53d30df331 diff --git a/dev/.github/hello-world.yml b/dev/.github/hello-world.yml new file mode 100644 index 0000000..e0a3f8e --- /dev/null +++ b/dev/.github/hello-world.yml @@ -0,0 +1,11 @@ +name: Hello World Workflow + +on: + push: + +jobs: + print-hello: + runs-on: ubuntu-latest + steps: + - name: Print message + run: echo "Hello World" \ No newline at end of file