Skip to content

Find flaky tests

Find flaky tests #3

name: Find flaky tests
on:
issue_comment:
types: [created]
workflow_dispatch:
jobs:
find-flaky-tests:
# Only run this workflow when the comment contains '/find-flaky-tests' or it's manually triggered
if: contains(github.event.comment.body, '/find-flaky-tests') || github.event_name == 'workflow_dispatch'
strategy:
matrix:
runs: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] # Run the build workflow 20 times
uses: ./.github/workflows/test-build.yml
with:
concurrency-group: '-find-flaky-tests-${{ matrix.runs }}'