diff --git a/.github/workflows/Demo.yaml b/.github/workflows/Demo.yaml new file mode 100644 index 0000000..e75144f --- /dev/null +++ b/.github/workflows/Demo.yaml @@ -0,0 +1,19 @@ +name: Simple Check + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Output Hello + run: echo "The workflow is running successfully" + \ No newline at end of file