From ccd2dca77afcbb3a44d34f1ea94de6490b2978f7 Mon Sep 17 00:00:00 2001 From: Luis Erlacher Date: Sun, 5 Oct 2025 12:49:01 -0300 Subject: [PATCH] ci: add simple test build workflow for Gitea Actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitea/workflows/test-build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/test-build.yml diff --git a/.gitea/workflows/test-build.yml b/.gitea/workflows/test-build.yml new file mode 100644 index 0000000..0acc6ea --- /dev/null +++ b/.gitea/workflows/test-build.yml @@ -0,0 +1,22 @@ +name: Test Build + +on: + push: + branches: + - main + +jobs: + build: + runs-on: wsl + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Build archon-server image + run: | + cd python + docker build -f Dockerfile.server -t archon-server:test . + + - name: Show Docker images + run: docker images | grep archon