mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 21:04:27 +01:00
Merge #202
202: Add a github action to run cargo-flaky 1000 times r=curquiza a=irevoire I don’t know how to ensure the CI works so it’s just a first version, do not hesitate to update the code Co-authored-by: Irevoire <tamo@meilisearch.com>
This commit is contained in:
commit
d46a2713d2
15
.github/workflows/flaky.yml
vendored
Normal file
15
.github/workflows/flaky.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
name: Look for flaky tests
|
||||
on:
|
||||
schedule:
|
||||
- cron: "* */12 * * */5" # every friday at 12PM
|
||||
|
||||
jobs:
|
||||
flaky:
|
||||
runs-on: ubuntu-18.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install cargo-flaky
|
||||
run: cargo install cargo-flaky
|
||||
- name: Run cargo flaky 1000 times
|
||||
run: cargo flaky -i 1000 --release
|
Loading…
Reference in New Issue
Block a user