Rework node operations storage, remove make_edge from insert_edge calls

This commit is contained in:
2023-08-23 19:28:45 +02:00
parent a81aafbf20
commit c365233ea4
16 changed files with 421 additions and 363 deletions

View File

@ -24,10 +24,10 @@ jobs:
version: '1.9.1'
- name: Install dependencies
run: julia --project -e 'import Pkg; Pkg.instantiate()'
run: julia --project=./ -e 'import Pkg; Pkg.instantiate()'
- name: Run tests
run: julia --project -t 4 -e 'import Pkg; Pkg.test()'
run: julia --project=./ -t 4 -e 'import Pkg; Pkg.test()' -O0
- name: Run examples
run: julia --project=examples/ -t 4 -e 'import Pkg; Pkg.develop(Pkg.PackageSpec(path=pwd())); Pkg.instantiate(); include("examples/import_bench.jl")'
run: julia --project=examples/ -t 4 -e 'import Pkg; Pkg.develop(Pkg.PackageSpec(path=pwd())); Pkg.instantiate(); include("examples/import_bench.jl")' -O3