feat(ci): Add basic CI workflow with three build steps
All checks were successful
CI / build (push) Successful in 35s

Introduce a basic CI pipeline configuration using GitHub Actions. The
workflow runs on Ubuntu and consists of three simple build steps, which
print progress messages. This setup will serve as a foundation for
future CI/CD enhancements.
This commit is contained in:
Christian Werner 2026-06-19 02:08:25 +02:00
parent e942cedbfa
commit 6f1e0ec6f1

18
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,18 @@
name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Step one
run: echo "Step one passed"
- name: Step two
run: echo "Step two passed"
- name: Step three
run: echo "Step three passed"