diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0dceccc..21eb4b1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,19 +1,29 @@ -name: CI Test +name: Multi-Lang CI on: push: branches: [main] jobs: - hello: + verify: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Hello World - run: | - echo "Hello from Gitea Actions!" - echo "Current dir: $(pwd)" - echo "Node version: $(node --version)" - echo "Files: $(ls -la)" + - 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!"