From 7e69ebd48d1b137f1f7c389faabc86eefa639b5c Mon Sep 17 00:00:00 2001 From: Matthew Howle Date: Sun, 20 Apr 2025 01:12:29 -0400 Subject: [PATCH] Add .gitea/workflows/test.yml --- .gitea/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..2c70e8f --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,23 @@ +name: Test + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + test-ci: + runs-on: ubuntu-latest + + 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"