mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-06 20:56:31 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
417 B
YAML
23 lines
417 B
YAML
name: Run the indexing fuzzer
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
fuzz:
|
|
name: Setup the action
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 4320 # 72h
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: dtolnay/rust-toolchain@1.85
|
|
with:
|
|
profile: minimal
|
|
|
|
# Run benchmarks
|
|
- name: Run the fuzzer
|
|
run: |
|
|
cargo run --release --bin fuzz-indexing
|