From e1036b1800e070c4b5cc067732a22bff1c80d40e Mon Sep 17 00:00:00 2001 From: ROHIT SHARMA Date: Fri, 10 May 2024 23:18:29 +0530 Subject: [PATCH] Create actions_items.yaml --- .github/workflows/actions_items.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/actions_items.yaml diff --git a/.github/workflows/actions_items.yaml b/.github/workflows/actions_items.yaml new file mode 100644 index 0000000..f032e16 --- /dev/null +++ b/.github/workflows/actions_items.yaml @@ -0,0 +1,14 @@ +name: Hello World + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Check out repository + uses: actions/checkout@v2 + + - name: Run Hello World script + run: echo "Hello, World!"