Add FW15Stage10 explicit 15-stage Runge-Kutta method of order 10 #47
Workflow file for this run
This file contains hidden or 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: Benchmark | |
| on: | |
| pull_request: | |
| branches: [master] | |
| paths-ignore: ['docs/**', '*.md'] | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| jobs: | |
| benchmark: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: ["1", "lts"] | |
| steps: | |
| - uses: MilesCranmer/AirspeedVelocity.jl@action-v1 | |
| with: | |
| julia_version: ${{ matrix.version }} | |
| script: "benchmark/benchmarks.jl" | |
| annotate_pr: true | |
| extra-pkgs: "StableRNGs,StaticArrays,LinearAlgebra,SparseArrays,DiffEqBase" |