Skip to content

Bump the dependencies group across 1 directory with 6 updates #41

Bump the dependencies group across 1 directory with 6 updates

Bump the dependencies group across 1 directory with 6 updates #41

Workflow file for this run

name: Benchmarks
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
benchmark:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run benchmarks
working-directory: aws_secretsmanager_caching
run: cargo bench --bench benchmark
- name: Upload benchmark results
if: always()
uses: actions/upload-artifact@v4
with:
name: benchmark-results-${{ github.sha }}
path: target/criterion/
if-no-files-found: error
retention-days: 30