Skip to content

Commit

Permalink
added cahcing
Browse files Browse the repository at this point in the history
  • Loading branch information
zutshi committed Dec 31, 2024
1 parent 1b53646 commit 7ff5096
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,17 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1

# From: https://github.com/actions/cache/blob/main/examples.md#rust---cargo
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Run benchmark
run: |
cd examples
Expand Down

0 comments on commit 7ff5096

Please sign in to comment.