I have integrated GitHub Test Reporter into my GitHub CI. My application is written in Golang, and it has some flaky tests. I added the following job to detect flaky tests:
- name: Post PR Comment
run: npx github-actions-ctrf flaky ctrf-report.json --pull-request
if: always()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
However, I keep getting the following result:
No flaky tests detected. ✨
I suspect that the flaky flag might not be supported. Am I wrong?
I have integrated GitHub Test Reporter into my GitHub CI. My application is written in Golang, and it has some flaky tests. I added the following job to detect flaky tests:
However, I keep getting the following result:
I suspect that the
flakyflag might not be supported. Am I wrong?