feat: add basic Gitea Actions test workflow
All checks were successful
Test Workflow / test (push) Successful in 25s
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.
This commit is contained in:
23
.gitea/workflows/test.yaml
Normal file
23
.gitea/workflows/test.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
Reference in New Issue
Block a user