Add simple test workflow

This commit is contained in:
m.marjorie 2025-04-03 12:04:15 +08:00
parent 70b4ee2231
commit df62dab6e7
1 changed files with 10 additions and 0 deletions

10
.gitea/workflows/test.yml Normal file
View File

@ -0,0 +1,10 @@
name: Simple Test Workflow
on: [push]
jobs:
test-job:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run a command
run: echo "Hello, Gitea Actions!"