From c6f07e7236cd5309857e5e6d794ee24bd5732a84 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Tue, 11 Feb 2025 18:12:50 -0500 Subject: [PATCH] Update IntegrationTest workflow --- .github/workflows/IntegrationTest.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/IntegrationTest.yml diff --git a/.github/workflows/IntegrationTest.yml b/.github/workflows/IntegrationTest.yml new file mode 100644 index 0000000..af87c54 --- /dev/null +++ b/.github/workflows/IntegrationTest.yml @@ -0,0 +1,25 @@ +name: "IntegrationTest" + +on: + push: + branches: + - 'main' + tags: '*' + paths: + - 'Project.toml' + pull_request: + paths: + - 'Project.toml' + +jobs: + integration-test: + name: "IntegrationTest" + strategy: + matrix: + repo: + - 'ITensor/DiagonalArrays.jl' + - 'ITensor/BlockSparseArrays.jl' + uses: "ITensor/ITensorActions/.github/workflows/IntegrationTest.yml@main" + with: + localregistry: "https://github.com/ITensor/ITensorRegistry.git" + repo: "${{ matrix.repo }}"