add sdk for agentruntime #547
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Agentcube CI Workflow | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - "release-*" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Verify Docker installation | |
| run: | | |
| docker --version | |
| docker buildx version | |
| - name: Build Agentcube API Server Docker image | |
| run: make docker-build |