Measure Test Flakiness #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Measure Test Flakiness | |
on: | |
schedule: | |
- cron: "0 0 * * 0" # run every Sunday at midnight | |
permissions: read-all | |
jobs: | |
measure-test-flakiness: | |
name: Measure Test Flakiness | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
set -euo pipefail | |
./scripts/measure-test-flakiness.sh | |
make bin/etcd-test-analyzer | |
bin/etcd-test-analyzer run -token $GITHUB_TOKEN -max-age=168h -workflow Tests -branch main |