From 6f1e0ec6f1bd899277dbfec3b94ca7a43d76f457 Mon Sep 17 00:00:00 2001 From: Christian Werner Date: Fri, 19 Jun 2026 02:08:25 +0200 Subject: [PATCH] feat(ci): Add basic CI workflow with three build steps 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. --- .gitea/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..c90a293 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -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"