diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index 77af92c09..e2db985ca 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -1,10 +1,11 @@ name: "Integration Testing" -on: [push, pull_request] +on: [push] jobs: multi-language-repo_test-autodetect-languages: strategy: + fail-fast: false matrix: os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} @@ -28,6 +29,7 @@ jobs: multi-language-repo_test-custom-queries: strategy: + fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} @@ -55,6 +57,7 @@ jobs: # Currently is not possible to analyze Go in conjunction with other languages in macos multi-language-repo_test-go-custom-queries: strategy: + fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }}