docker mode test with host.containers.internal
Docker CI / test (push) Failing after 51s

This commit is contained in:
benson
2026-07-19 23:42:04 +08:00
parent e58d66dc45
commit 4f9d48d02e
+7 -20
View File
@@ -1,29 +1,16 @@
name: Multi-Lang CI name: Docker CI
on: on:
push: push:
branches: [main] branches: [main]
jobs: jobs:
verify: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Hello
- name: Go version run: |
run: go version echo "Hello from Docker container!"
node --version
- name: Rust version echo "Checkout URL should use host.containers.internal"
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!"