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.
1 parent d1ac981 commit a7b6bdbCopy full SHA for a7b6bdb
.github/workflows/benchmark.yml
@@ -8,22 +8,16 @@ jobs:
8
benchmark:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
12
- uses: julia-actions/setup-julia@v1
13
with:
14
version: '1.8.5'
15
- - name: Cache artifacts
16
- uses: actions/cache@v2
17
- with:
18
- path: |
19
- ~/.julia/artifacts
20
- ~/.julia/registries
21
- key: ${{ runner.os }}-benchmarks-artifacts-${{ hashFiles('**/Project.toml') }}
22
- restore-keys: ${{ runner.os }}-benchmarks-artifacts
+ - uses: julia-actions/cache@v1
23
- name: Run benchmarks
24
shell: julia --color=yes --project=benchmark {0}
25
run: |
26
using Pkg
+ Pkg.develop(; path=".")
27
Pkg.instantiate()
28
29
using PkgBenchmark, BenchmarkCI
0 commit comments