Add .gitea/workflows/test-runner.yaml
All checks were successful
Test Runner / test (push) Successful in 1m28s

This commit is contained in:
2025-02-25 03:37:23 +00:00
parent 283d00975d
commit 42ce9a50b6

View File

@ -0,0 +1,24 @@
name: Test Runner
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Print Gitea context
run: |
echo "Event: ${{ gitea.event_name }}"
echo "Repository: ${{ gitea.repository }}"
echo "Actor: ${{ gitea.actor }}"
- name: List files
run: ls -la
- name: Print working directory
run: pwd