Skip to content

chore(deps-dev): Bump prettier from 3.2.5 to 3.3.2 in the npm-deps group across 1 directory #515

chore(deps-dev): Bump prettier from 3.2.5 to 3.3.2 in the npm-deps group across 1 directory

chore(deps-dev): Bump prettier from 3.2.5 to 3.3.2 in the npm-deps group across 1 directory #515

Workflow file for this run

---
name: Bench
"on":
push:
branches:
- trunk
pull_request:
branches:
- trunk
schedule:
- cron: "0 0 * * WED"
jobs:
bench:
name: Bench
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
RUST_BACKTRACE: 1
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.4
- name: Install Rust toolchain
uses: artichoke/setup-rust/build-and-test@v1.11.0
with:
toolchain: nightly
- name: Compile
run: cargo build --verbose
working-directory: benchmarks
- name: Compile tests
run: cargo bench --no-run
working-directory: benchmarks
- name: Test
if: github.ref == 'refs/heads/trunk'
run: cargo bench
working-directory: benchmarks