File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Regression tests
2
+ on :
3
+ pull_request :
4
+
5
+ jobs :
6
+ Benchmark :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+ - uses : julia-actions/setup-julia@latest
11
+ with :
12
+ version : 1
13
+ - uses : julia-actions/julia-buildpkg@latest
14
+ - name : Install dependencies
15
+ run :
julia -e 'using Pkg; pkg"add PkgBenchmark [email protected] "'
16
+ - name : Run benchmarks
17
+ # Remove baseline once merged. Regression tests will only work after this is merged
18
+ # in master.
19
+ run : julia -e 'using BenchmarkCI; BenchmarkCI.judge(; baseline="HEAD")'
20
+ - name : Print judgement
21
+ run : julia -e 'using BenchmarkCI; BenchmarkCI.displayjudgement()'
22
+ env :
23
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -10,4 +10,5 @@ Manifest.toml
10
10
/LocalPreferences.toml
11
11
.vscode
12
12
.CondaPkg
13
- /benchmark /tune.json
13
+ /.benchmarkci
14
+ /benchmark /** /* .json
You can’t perform that action at this time.
0 commit comments