add ci workflow
All checks were successful
CI Test / hello (push) Successful in 14s

This commit is contained in:
forgejoadmin 2026-04-26 11:39:40 -04:00
parent b248e90441
commit 81873ebf42

17
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,17 @@
name: CI Test
on:
push:
branches: [main]
workflow_dispatch:
jobs:
hello:
runs-on: docker
steps:
- name: Say hello
run: |
echo "Hello from Forgejo Actions!"
echo "Runner: $RUNNER_NAME"
uname -a
node --version
- name: Math check
run: echo "2+2 = $((2+2))"