From 4b9729d23c69c39070a8793db4cd0ca8dc0369e5 Mon Sep 17 00:00:00 2001 From: SilverLABS Date: Wed, 10 Jun 2026 22:12:29 +0000 Subject: [PATCH] ci: add flutter-builder checkout smoke workflow (act_runner 0.4.1 verification) --- .gitea/workflows/flutter-runner-smoke.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/flutter-runner-smoke.yml diff --git a/.gitea/workflows/flutter-runner-smoke.yml b/.gitea/workflows/flutter-runner-smoke.yml new file mode 100644 index 0000000..af56c6f --- /dev/null +++ b/.gitea/workflows/flutter-runner-smoke.yml @@ -0,0 +1,14 @@ +name: flutter-runner-checkout-smoke +on: + workflow_dispatch: + +jobs: + checkout-smoke: + runs-on: flutter-builder + steps: + - uses: actions/checkout@v4 + - name: Prove checkout worked + run: | + echo "checkout OK" + ls -la + git log -1 --oneline \ No newline at end of file