From 580321570248e49f560cc6226064d9bce94cf63f Mon Sep 17 00:00:00 2001 From: Daniel Lindenfelser Date: Sat, 18 Jul 2026 21:53:50 +0200 Subject: [PATCH] Add temporary smoke-test workflow (to be removed) --- .gitea/workflows/smoke-test.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitea/workflows/smoke-test.yaml diff --git a/.gitea/workflows/smoke-test.yaml b/.gitea/workflows/smoke-test.yaml new file mode 100644 index 0000000..bd196b6 --- /dev/null +++ b/.gitea/workflows/smoke-test.yaml @@ -0,0 +1,10 @@ +name: smoke-test +on: [push] +jobs: + smoke: + runs-on: alpine + steps: + - run: echo "runner alive on $(uname -a)" + - run: | + echo "container id: $(cat /etc/hostname)" + echo "date: $(date)"