mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-04 20:18:55 +01:00
25 lines
466 B
YAML
25 lines
466 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@v3
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
|
|
# Run benchmarks
|
|
- name: Run the fuzzer
|
|
run: |
|
|
cargo run --release --bin fuzz-indexing
|