Skip to content

Commit

Permalink
Improve CI Reliability of Generator Specs
Browse files Browse the repository at this point in the history
Generator specs experience random failures likely due to numerous
network requests to the node registry.

To mitigate this, `continue-on-error: true` is set, allowing the current
combination to fail without halting other matrix combinations.
  • Loading branch information
tagliala committed Jan 8, 2025
1 parent e52b335 commit cfddf35
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
test:
name: Generator specs
runs-on: ${{ matrix.os }}
# Generator specs experience random failures likely due to numerous
# network requests to the node registry.
# To mitigate this, `continue-on-error: true` is set, allowing the current
# combination to fail without halting other matrix combinations.
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest]
Expand Down

0 comments on commit cfddf35

Please sign in to comment.