From 4f9d48d02ef6f616ba091d54c209ad4adbf20565 Mon Sep 17 00:00:00 2001 From: benson Date: Sun, 19 Jul 2026 23:42:04 +0800 Subject: [PATCH] docker mode test with host.containers.internal --- .gitea/workflows/ci.yml | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 21eb4b1..3c9cb8d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,29 +1,16 @@ -name: Multi-Lang CI +name: Docker CI on: push: branches: [main] jobs: - verify: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - - name: Go version - run: go version - - - name: Rust version - run: rustc --version - - - name: Java version - run: java --version - - - name: Python version - run: python3 --version - - - name: Node version - run: node --version - - - name: All tools OK - run: echo "✅ All language tools available!" + - name: Hello + run: | + echo "Hello from Docker container!" + node --version + echo "Checkout URL should use host.containers.internal"