From 2eb86d5d0d6ccb6dff27137355fd98c2eca9d8ed Mon Sep 17 00:00:00 2001 From: Juan Sebastian Montoya Date: Thu, 10 Apr 2025 16:06:49 -0500 Subject: [PATCH] chore: add GitHub Actions workflow for testing - Created a new demo.yaml file for GitHub Actions to run a basic test job - Configured the workflow to execute a simple echo command on push events --- .forgejo/workflows/demo.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .forgejo/workflows/demo.yaml diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml new file mode 100644 index 0000000..d470cda --- /dev/null +++ b/.forgejo/workflows/demo.yaml @@ -0,0 +1,6 @@ +on: [push] +jobs: + test: + runs-on: docker + steps: + - run: echo All Good