Start multithreading

This commit is contained in:
2023-08-18 18:44:55 +02:00
parent 9cac6e76be
commit 895e4b2a12
6 changed files with 52 additions and 28 deletions

View File

@ -27,7 +27,7 @@ jobs:
run: julia --project -e 'import Pkg; Pkg.instantiate()'
- name: Run tests
run: julia --project -e 'import Pkg; Pkg.test()'
run: julia --project -t 4 -e 'import Pkg; Pkg.test()'
- name: Run examples
run: julia --project=examples/ -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")'