ci: add simple test build workflow for Gitea Actions
All checks were successful
Test Build / build (push) Successful in 27s

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Luis Erlacher 2025-10-05 12:49:01 -03:00
parent 63a92cf7d7
commit ccd2dca77a

View File

@ -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