From 74e63142ee9528fb5e3deb60e2af40614c3379e6 Mon Sep 17 00:00:00 2001 From: Andrew K <11714005+the3venthoriz0n@users.noreply.github.com> Date: Sat, 16 Mar 2024 19:16:19 -0700 Subject: [PATCH] Create helloworld.yml Testing actions --- .github/workflows/helloworld.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/helloworld.yml diff --git a/.github/workflows/helloworld.yml b/.github/workflows/helloworld.yml new file mode 100644 index 0000000..3542dd8 --- /dev/null +++ b/.github/workflows/helloworld.yml @@ -0,0 +1,15 @@ +name: Hello World + +on: + push + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@main + + - name: Print Hello World + run: echo "Hello, World!"