All checks were successful
Test Workflow / test (push) Successful in 25s
Adds a simple workflow to verify Gitea Actions is running correctly. Triggers on push to main and manual dispatch.
24 lines
478 B
YAML
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
|