Create new build id for each integrations test run #668
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: Pull Request | |
permissions: | |
contents: read | |
id-token: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
integrity-check: | |
uses: ./.github/workflows/pr-go-integrity.yml | |
out-of-order-migrations: | |
uses: ./.github/workflows/out-of-order-migrations.yml | |
unit-tests: | |
needs: [ integrity-check ] | |
uses: ./.github/workflows/pr-tests.yml | |
integration-tests: | |
needs: [ integrity-check, out-of-order-migrations ] | |
uses: ./.github/workflows/integration_tests.yml | |
publish-test-results: | |
needs: | |
- unit-tests | |
- integration-tests | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
if: always() | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: artifacts | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
comment_mode: off | |
fail_on: 'errors' | |
files: "artifacts/**/*.xml" |