From 242982f2928166f6594b635e03af7f703632b3c3 Mon Sep 17 00:00:00 2001 From: Doc Date: Mon, 6 Oct 2025 09:50:48 -0400 Subject: [PATCH] Add workflow to test actions runner Added a workflow file to test the proper functioning of an actions runner for Gitea. Added: - .gitea/workflows/test-runner.yaml --- .gitea/workflows/test-runner.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/test-runner.yaml diff --git a/.gitea/workflows/test-runner.yaml b/.gitea/workflows/test-runner.yaml new file mode 100644 index 0000000..b3cf5b0 --- /dev/null +++ b/.gitea/workflows/test-runner.yaml @@ -0,0 +1,18 @@ + name: Test Gitea Runner + on: #[push] # Trigger the workflow on every push to the repository + workflow_dispatch: + + jobs: + check-runner: + runs-on: ubuntu-latest # Specify the runner label (or a custom label if configured) + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run a simple echo command + run: echo "Hello from Gitea Actions Runner!" + + - name: List files + run: | + echo "Listing files in the workspace..." + ls -laF