We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
run_benchmarks.jl
1 parent de3925c commit c14cf2cCopy full SHA for c14cf2c
.gitignore
@@ -7,3 +7,5 @@ LocalPreferences.toml
7
docs/Manifest.toml
8
lcov.info
9
benchmark/Manifest.toml
10
+/.benchmarkci
11
+/benchmark/*.json
benchmark/run_benchmarks.jl
@@ -0,0 +1,10 @@
1
+# To run benchmarks locally, BenchmarkCI should be added to root project. Then call:
2
+# ```bash
3
+# julia benchmark/run_benchmarks.jl
4
+# ```
5
+
6
+using BenchmarkCI
+on_CI = haskey(ENV, "GITHUB_ACTIONS")
+BenchmarkCI.judge(; baseline = "origin/main")
+on_CI ? BenchmarkCI.postjudge() : BenchmarkCI.displayjudgement()
0 commit comments