add a github action to run cargo-flaky 1000 times

This commit is contained in:
Irevoire 2021-06-10 16:53:30 +02:00
parent e6220a1346
commit 7312c13665
No known key found for this signature in database
GPG Key ID: 7A6A970C96104F1B
1 changed files with 15 additions and 0 deletions

15
.github/workflows/flaky.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: "Look for flaky tests"
on:
schedule:
- cron: "* */12 * * */5" # every friday at 12PM
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: "install cargo-flaky"
run: cargo install cargo-flaky
- name: "Run cargo flaky 1000 times"
run: cargo flaky -i 1000