From 8bd6e826ab58254fce523395efc8507f2b3b91e1 Mon Sep 17 00:00:00 2001 From: Matthew Howle Date: Sun, 20 Apr 2025 01:09:39 -0400 Subject: [PATCH] Add workflow --- .gitea/workflow/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflow/ci.yml diff --git a/.gitea/workflow/ci.yml b/.gitea/workflow/ci.yml new file mode 100644 index 0000000..21bbc40 --- /dev/null +++ b/.gitea/workflow/ci.yml @@ -0,0 +1,23 @@ +name: Test + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + test-ci: + runs-on: ubuntu + + steps: + - name: Checkout repo + uses: actions/checkout@v4 + + - name: Test + run: | + whoami + env + + - name: Print success + run: echo "✅ Rootless Docker is working inside Gitea act_runner"