Disable SQLServer on Windows test failure impacting master pipeline (… #2731
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: Master | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
cache: | |
uses: ./.github/workflows/cache-shared-deps.yml | |
test: | |
needs: | |
- cache | |
uses: ./.github/workflows/test-all.yml | |
with: | |
repo: core | |
# Options | |
standard: true | |
secrets: inherit | |
publish-test-results: | |
needs: | |
- test | |
if: success() || failure() | |
concurrency: | |
group: test-results | |
uses: ./.github/workflows/test-results-master.yml | |
secrets: inherit | |
submit-traces: | |
needs: | |
- test | |
if: success() || failure() | |
uses: ./.github/workflows/submit-traces.yml | |
secrets: inherit |