version bumps #1546
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
| # this file is generated using gen_integration.sh | ||
| name: Linux Integration Tests | ||
| on: | ||
| pull_request: | ||
| branches: [main, staging] | ||
| workflow_dispatch: | ||
| jobs: | ||
| build: | ||
| name: Build Draft Binary | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Go | ||
| uses: actions/setup-go@v5 | ||
| with: | ||
| go-version: 1.22 | ||
| - name: make | ||
| run: make | ||
| - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | ||
| with: | ||
| name: helm-skaffold | ||
| path: ./test/skaffold.yaml | ||
| if-no-files-found: error | ||
| - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | ||
| with: | ||
| name: draft-binary | ||
| path: ./draft | ||
| if-no-files-found: error | ||
| language-integration-test: | ||
| name: Language/DeployType Matrix | ||
| needs: build | ||
| strategy: | ||
| matrix: | ||
| language: ["gomodule"] | ||
| repo: ["davidgamero/go_echo"] | ||
| include: | ||
| - language: "go" | ||
| repo: "davidgamero/go-echo-no-mod" | ||
| uses: ./.github/workflows/integration-per-language.yml | ||
| with: | ||
| language: ${{ matrix.language }} | ||
| repo: ${{ matrix.repo }} | ||
| linux-integration-summary: | ||
| needs: language-integration-test | ||
| name: Linux Integration Summary | ||
| steps: | ||
| run: | | ||
| echo "Success" | ||