Make sure you can add SetFunctionCallables to BipartiteDiagrams during limit computation #2106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Experiments | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
experiment: [Markov, TensorNetworks] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up Julia" | |
uses: julia-actions/setup-julia@latest | |
with: | |
version: "1" | |
# XXX: Cannot change working directory for "uses" steps. | |
#- name: "Run tests" | |
# uses: julia-actions/julia-runtest@main | |
- name: "Run tests" | |
run: | | |
cd experiments/${{ matrix.experiment }} | |
julia --color=yes --project -e \ | |
'using Pkg; Pkg.develop(PackageSpec(path="../..")); Pkg.test(coverage=true)' |