diff --git a/.forgejo/workflows/Demo.yaml b/.forgejo/workflows/Demo.yaml new file mode 100644 index 0000000..25264c5 --- /dev/null +++ b/.forgejo/workflows/Demo.yaml @@ -0,0 +1,18 @@ +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