Add hello world test workflow

This commit is contained in:
Ryan Moon
2026-03-31 18:07:56 -05:00
parent ff40e5e79f
commit 6fb6a721a2

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

@@ -0,0 +1,13 @@
name: Test
on:
push:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Hello
run: echo "Actions is working"