Files
jamie b9f16103e0
All checks were successful
Test Workflow / test (push) Successful in 25s
feat: add basic Gitea Actions test workflow
Adds a simple workflow to verify Gitea Actions is running correctly.
Triggers on push to main and manual dispatch.
2026-01-08 00:15:16 +11:00

24 lines
478 B
YAML

name: Test Workflow
on:
push:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test Action Running
run: |
echo "Gitea Actions is working!"
echo "Repository: ${{ gitea.repository }}"
echo "Branch: ${{ gitea.ref_name }}"
echo "Commit: ${{ gitea.sha }}"
echo "Runner: $(uname -a)"
date