first commit
Some checks are pending
Test Gitea Runner / test-runner (push) Waiting to run

This commit is contained in:
Raven Scott 2025-01-31 19:18:35 -05:00
commit 3fc9485b4b
3 changed files with 24 additions and 0 deletions

16
.gitea/workflows/test.yml Normal file
View File

@ -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

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# Gitea Runner Test Repo
This repository is used to test Gitea Runner configurations.

6
test.sh Executable file
View File

@ -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