Skip to content

Commit

Permalink
Set continue-on-error on generator specs
Browse files Browse the repository at this point in the history
Generator specs suffer from random failures probably because of the huge
number of network requests to the node registry.

Setting `continue-on-error: true` will allow the current combination to
fail without stopping other matrix combinations from running.
  • Loading branch information
tagliala committed Jan 8, 2025
1 parent e52b335 commit f0793b7
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 suffer from random failures probably because of the huge
# number of network requests to the node registry
# Setting `continue-on-error: true` will allow the current combination to
# fail without stopping other matrix combinations from running
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest]
Expand Down

0 comments on commit f0793b7

Please sign in to comment.