commit 8bd6e826ab58254fce523395efc8507f2b3b91e1 Author: Matthew Howle Date: Sun Apr 20 01:09:39 2025 -0400 Add workflow 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"