Make propagate more like a monadic bind by supporting stochastic triple creating functions #232
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: Benchmarks | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: '*' | |
jobs: | |
benchmark: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: 1 | |
- name: Install dependencies | |
run: julia -e 'using Pkg; Pkg.activate("tutorials"); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();' | |
- name: Run benchmarks | |
run: julia --project=tutorials --color=yes benchmark/runbenchmarks.jl |