Skip to content

Commit

Permalink
add run-flaky-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
carlydf committed Oct 11, 2024
1 parent 6ef88f9 commit d53a5fe
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/run-flaky-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: All Tests Including Flaky

on:
schedule:
# Run once a day at midnight
- cron: '0 0 * * *'

workflow_dispatch:

env:
COMMIT: ${{ github.sha }}
DOCKER_COMPOSE_FILE: ./develop/github/docker-compose.yml
TEMPORAL_VERSION_CHECK_DISABLED: 1
BUILDKITE_ANALYTICS_TOKEN: ${{ secrets.BUILDKITE_ANALYTICS_TOKEN }}

jobs:
call-run-tests-workflow-with-flaky:
uses: temporalio/temporal/.github/workflows/run-tests.yml@main
with:
include_flaky_tests: true
secrets: inherit

0 comments on commit d53a5fe

Please sign in to comment.