From 0e8906ba8f0788bc5f2efca0d8655f4fdb84201f Mon Sep 17 00:00:00 2001 From: Kajanan Selvanesan Date: Thu, 23 May 2024 20:15:13 +0530 Subject: [PATCH] Test commit --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..e71f0ad --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: Example Workflow + +on: + push: + branches: + - '*' + +jobs: + example_job: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Print branch name + run: echo "Branch name is ${{ github.ref }}"