diff options
| author | Andre Weissflog <floooh@gmail.com> | 2023-03-31 18:05:49 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2023-03-31 18:05:49 +0200 |
| commit | 1b66ce49134004a943d9c0e1d5c5f7b890e48149 (patch) | |
| tree | 3f786df6470d9de546bf60e43734c993a39a2416 | |
| parent | dbe397f6ed2f0ecef7f9fe525520b9b25f7b1229 (diff) | |
gen_bindings.yml: disable fail-fast mode for matrix jobs
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index 321b08f9..ba85e4b8 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -117,6 +117,7 @@ jobs: test-nim: needs: gen-bindings strategy: + fail-fast: false matrix: #os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest ] @@ -144,6 +145,7 @@ jobs: test-odin: needs: gen-bindings strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{matrix.os}} @@ -243,6 +245,7 @@ jobs: env: CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{matrix.os}} |