We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d3cda2 commit ff2493fCopy full SHA for ff2493f
.github/workflows/benchmark.yml
@@ -0,0 +1,21 @@
1
+name: Run benchmarks
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ Benchmark:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - uses: julia-actions/setup-julia@latest
12
+ with:
13
+ version: 1.3
14
+ - name: Install dependencies
15
+ run: julia -e 'using Pkg; pkg"add PkgBenchmark [email protected]"'
16
+ - name: Run benchmarks
17
+ run: julia -e 'using BenchmarkCI; BenchmarkCI.judge()'
18
+ - name: Post results
19
+ run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()'
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.gitignore
@@ -1,6 +1,8 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
+/.benchmarkci
/Manifest.toml
+/benchmark/*.json
/benchmark/Manifest.toml
/docs/Manifest.toml
0 commit comments