We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c69cfa8 commit a99ba17Copy full SHA for a99ba17
1 file changed
.github/workflows/ci-tests.yaml
@@ -21,6 +21,7 @@ jobs:
21
- os: macos-latest
22
perl: latest
23
name: 🐪 Perl ${{ matrix.perl }} on ${{ matrix.os }}
24
+ fail-fast: false
25
steps:
26
- uses: actions/checkout@v4
27
- uses: shogo82148/actions-setup-perl@v1
@@ -35,7 +36,9 @@ jobs:
35
36
./Build build
37
- name: Run tests
38
run: |
- TEST_SHARED=1 TEST_SUBREAPER=1 cover -test -report codecovbash
39
+ curl https://raw.githubusercontent.com/okurz/retry/refs/heads/main/count-fail-ratio > count-fail-ratio
40
+ chmod +x count-fail-ratio
41
+ TEST_SHARED=1 TEST_SUBREAPER=1 runs=1000 ./count-fail-ratio cover -test -report codecovbash
42
- name: Upload coverage to ☂️ Codecov
43
uses: codecov/codecov-action@v5
44
if: matrix.perl == 'latest'
0 commit comments