From 99d07c9c59e93a4ab9876419409eb7e2c36c6801 Mon Sep 17 00:00:00 2001 From: Elgin_Linux Date: Thu, 6 Aug 2026 01:37:54 +0200 Subject: [PATCH] eerste workflow-test --- .gitea/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 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..6f71086 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,13 @@ +name: CI +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Hallo + run: echo "Hoi vanaf $(hostname) in $(pwd)" + - name: Slaapje + run: sleep 5 + - name: Status + run: exit 0