From fccb5e9876cf9139e77a6abbd1cf04770a67beec Mon Sep 17 00:00:00 2001 From: mtfishman Date: Thu, 13 Feb 2025 19:05:11 -0500 Subject: [PATCH] Add IntegrationTest workflow --- .github/workflows/IntegrationTest.yml | 27 +++++++++++++++++++++++++++ Project.toml | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) 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..fd1ccc9 --- /dev/null +++ b/.github/workflows/IntegrationTest.yml @@ -0,0 +1,27 @@ +name: "IntegrationTest" + +on: + push: + branches: + - 'main' + tags: '*' + paths: + - 'Project.toml' + pull_request: + paths: + - 'Project.toml' + +jobs: + integration-test: + name: "IntegrationTest" + strategy: + matrix: + repo: + - 'ITensor/ITensorBase.jl' + - 'ITensor/NamedDimsArrays.jl' + - 'ITensor/QuantumOperatorDefinitions.jl' + - 'ITensor/TensorAlgebra.jl' + uses: "ITensor/ITensorActions/.github/workflows/IntegrationTest.yml@main" + with: + localregistry: "https://github.com/ITensor/ITensorRegistry.git" + repo: "${{ matrix.repo }}" diff --git a/Project.toml b/Project.toml index 82ccb11..1944cd5 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "BlockSparseArrays" uuid = "2c9a651f-6452-4ace-a6ac-809f4280fbb4" authors = ["ITensor developers and contributors"] -version = "0.2.17" +version = "0.2.18" [deps] Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"