Skip to content

Bump TensorAlgebra compat to 0.8, NamedDimsArrays to 0.15 #286

Bump TensorAlgebra compat to 0.8, NamedDimsArrays to 0.15

Bump TensorAlgebra compat to 0.8, NamedDimsArrays to 0.15 #286

Workflow file for this run

name: "IntegrationTest"
on:
push:
branches:
- "main"
tags: "*"
paths:
- "Project.toml"
pull_request_target:
types:
- "opened"
- "synchronize"
- "reopened"
- "ready_for_review"
- "converted_to_draft"
paths:
- "Project.toml"
jobs:
integration-test:
name: "IntegrationTest"
strategy:
fail-fast: false
matrix:
pkg:
- "BlockSparseArrays"
- "DiagonalArrays"
- "FusionTensors"
- "GradedArrays"
uses: "ITensor/ITensorActions/.github/workflows/IntegrationTest.yml@main"
secrets: "inherit"
with:
localregistry: "https://github.com/ITensor/ITensorRegistry.git"
pkg: "${{ matrix.pkg }}"
integration-gate:
name: "IntegrationTest"
needs: "integration-test"
if: "${{ always() && needs.integration-test.result != 'skipped' }}"
runs-on: "ubuntu-latest"
steps:
- name: "Fail if any downstream integration test failed"
run: |
echo "integration-test.result = ${{ needs.integration-test.result }}"
test "${{ needs.integration-test.result }}" = "success"