17 lines
271 B
YAML
17 lines
271 B
YAML
|
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
|