Skip to content

Use add! in unmatricizeadd! (#152) #328

Use add! in unmatricizeadd! (#152)

Use add! in unmatricizeadd! (#152) #328

name: "IntegrationTest"
on:
push:
branches:
- "main"
tags: "*"
paths:
- "Project.toml"
pull_request:
types:
- "opened"
- "synchronize"
- "reopened"
- "ready_for_review"
- "converted_to_draft"
paths:
- "Project.toml"
jobs:
integration-test:
name: "IntegrationTest"
strategy:
matrix:
pkg:
- "BlockSparseArrays"
- "DiagonalArrays"
- "FusionTensors"
- "GradedArrays"
- "ITensorBase"
- "ITensorNetworksNext"
- "KroneckerArrays"
- "NamedDimsArrays"
- "SparseArraysBase"
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"