diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index e3a94c57..db43292b 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -40,3 +40,14 @@ jobs: localregistry: "https://github.com/ITensor/ITensorRegistry.git" secrets: CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}" + tests-gate: + name: "Tests" + needs: "tests" + if: "${{ always() }}" + runs-on: "ubuntu-latest" + steps: + - name: "Fail if any matrix leg failed" + run: | + echo "tests.result = ${{ needs.tests.result }}" + test "${{ needs.tests.result }}" = "success" + diff --git a/Project.toml b/Project.toml index 1213f29a..3a5a1946 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "BlockSparseArrays" uuid = "2c9a651f-6452-4ace-a6ac-809f4280fbb4" -version = "0.10.23" +version = "0.10.24" authors = ["ITensor developers and contributors"] [workspace]