From 3fc9485b4bf61f6829ed89e368aca8d1fbf924cc Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Fri, 31 Jan 2025 19:18:35 -0500 Subject: [PATCH] first commit --- .gitea/workflows/test.yml | 16 ++++++++++++++++ README.md | 2 ++ test.sh | 6 ++++++ 3 files changed, 24 insertions(+) create mode 100644 .gitea/workflows/test.yml create mode 100644 README.md create mode 100755 test.sh diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..d7c806e --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,16 @@ +name: Test Gitea Runner +on: + push: + branches: + - main +jobs: + test-runner: + runs-on: actions + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Run Test Script + run: | + chmod +x test.sh + ./test.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..1a80403 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Gitea Runner Test Repo +This repository is used to test Gitea Runner configurations. diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..d170188 --- /dev/null +++ b/test.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +echo "Running Gitea Runner Test" +echo "Current Directory: /Users/raven/runner/gitea-runner-test" +echo "Listing Files:" +ls -la