mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 12:38:55 +01:00
ed185fb636
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
329 B
YAML
16 lines
329 B
YAML
name: Look for flaky tests
|
|
on:
|
|
schedule:
|
|
- cron: "0 12 * * FRI" # every friday at 12:00PM
|
|
|
|
jobs:
|
|
flaky:
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install cargo-flaky
|
|
run: cargo install cargo-flaky
|
|
- name: Run cargo flaky 100 times
|
|
run: cargo flaky -i 100 --release
|