We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 238d111 commit f3b4c2fCopy full SHA for f3b4c2f
.github/workflows/ci.yml
@@ -590,6 +590,7 @@ jobs:
590
lint-misspell-sanitycheck,
591
detect-changes,
592
lint-md,
593
+ lint-yml,
594
lint-dotnet-format,
595
build-test-exporter-geneva,
596
build-test-exporter-influxdb,
@@ -633,7 +634,8 @@ jobs:
633
634
build-test-contrib-shared-tests,
635
verify-aot-compat
636
]
- if: always() && !cancelled() && !contains(needs.*.result, 'failure')
637
- runs-on: windows-latest
+ if: always() && !cancelled()
638
+ runs-on: ubuntu-latest
639
steps:
- - run: echo 'build complete ✓'
640
+ - run: |
641
+ if ( ${{ contains(needs.*.result, 'failure') }} == true ); then echo 'build failed ✗'; exit 1; else echo 'build complete ✓'; fi
0 commit comments