chore: Bump github.com/mark3labs/mcp-go from 0.41.1 to 0.42.0 #267
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: Container | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read # for actions/checkout to fetch code | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-container: | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Test container build | |
| uses: flowexec/action@v1 | |
| with: | |
| executable: 'build container' | |
| timeout: '20m' | |
| continue-on-error: true | |
| flow-version: 'main' | |
| id: container | |
| - name: Check container build | |
| run: | | |
| echo "Container build completed with exit code: ${{ steps.container.outputs.exit-code }}" | |
| if [ "${{ steps.container.outputs.exit-code }}" = "0" ]; then | |
| echo "✅ Container build successful" | |
| else | |
| echo "⚠️ Container build failed (expected in CI without Docker setup)" | |
| fi |