File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 with :
3030 localregistry : " https://github.com/ITensor/ITensorRegistry.git"
3131 pkg : " ${{ matrix.pkg }}"
32+ integration-gate :
33+ name : IntegrationTest
34+ needs : integration-test
35+ if : ${{ always() }}
36+ runs-on : ubuntu-latest
37+ steps :
38+ - name : Fail if any downstream integration test failed
39+ run : |
40+ echo "integration-test.result = ${{ needs['integration-test'].result }}"
41+ test "${{ needs['integration-test'].result }}" = "success"
Original file line number Diff line number Diff line change 4040 localregistry : " https://github.com/ITensor/ITensorRegistry.git"
4141 secrets :
4242 CODECOV_TOKEN : " ${{ secrets.CODECOV_TOKEN }}"
43+ tests-gate :
44+ name : Tests
45+ needs : tests
46+ if : ${{ always() }}
47+ runs-on : ubuntu-latest
48+ steps :
49+ - name : Fail if any matrix leg failed
50+ run : |
51+ echo "tests.result = ${{ needs.tests.result }}"
52+ test "${{ needs.tests.result }}" = "success"
Original file line number Diff line number Diff line change 11name = " SparseArraysBase"
22uuid = " 0d5efcca-f356-4864-8770-e1ed8d78f208"
3- version = " 0.9.8 "
3+ version = " 0.9.9 "
44authors = [" ITensor developers <support@itensor.org> and contributors" ]
55
66[workspace ]
You can’t perform that action at this time.
0 commit comments