Skip to content

Commit d42a78f

Browse files
committed
Don't stop on fail in .github/workflows/test-all.yaml
1 parent ac509d5 commit d42a78f

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/test-all.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,28 +55,37 @@ jobs:
5555
uses: actions/checkout@v4
5656
- name: Test core library
5757
if: inputs.core
58+
continue-on-error: true
5859
run: make test-core
5960
- name: Test Clojure binding
6061
if: inputs.clojure
62+
continue-on-error: true
6163
run: make test-clojure
6264
- name: Test C# binding
6365
if: inputs.csharp
66+
continue-on-error: true
6467
run: make test-csharp
6568
- name: Test Fortran binding
6669
if: inputs.fortran
70+
continue-on-error: true
6771
run: make test-fortran
6872
- name: Test Go binding
6973
if: inputs.go
74+
continue-on-error: true
7075
run: make test-go
7176
- name: Test Node.js binding
7277
if: inputs.nodejs
78+
continue-on-error: true
7379
run: make test-nodejs
7480
- name: Test Perl binding
7581
if: inputs.perl
82+
continue-on-error: true
7683
run: make test-perl
7784
- name: Test Python binding
7885
if: inputs.python
86+
continue-on-error: true
7987
run: make test-python
8088
- name: Test Rust binding
8189
if: inputs.rust
90+
continue-on-error: true
8291
run: make test-rust

0 commit comments

Comments
 (0)