Ignore empty volumes #6
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: Merge on Main | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Hub login | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ vars.DOCKERBUILDBOT_USERNAME }} | |
| password: ${{ secrets.DOCKERBUILDBOT_WRITE_PAT }} | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| with: | |
| driver: cloud | |
| endpoint: "mcp/cloud-ai-labs" | |
| install: true | |
| - name: Lint | |
| run: make lint | |
| - name: Tests | |
| run: make test | |
| - name: Build | |
| run: make docker-mcp-cross | |
| - name: Push Gateway image | |
| run: make push-mcp-gateway |