test: add minimal workflow to test GitHub Actions execution

This commit is contained in:
ProtoTess
2025-12-01 03:24:39 +00:00
parent a85a109c17
commit b0ff5e5380
+14
View File
@@ -0,0 +1,14 @@
name: Simple Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
simple:
runs-on: ubuntu-latest
steps:
- name: Echo test
run: echo "Hello from GitHub Actions"