We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0468f5 commit 8811b03Copy full SHA for 8811b03
.github/workflows/ci-tests.yaml
@@ -36,6 +36,11 @@ jobs:
36
cpanm --with-feature=ci --installdeps --notest .
37
perl Build.PL
38
./Build build
39
+ - name: Pre-check test scripts
40
+ run: |
41
+ t/data/simple_rwp.pl && echo "simple_rwp: $?"
42
+ t/data/simple_fork.pl && echo "simple_fork: $?"
43
+ t/data/sigchld_handler.pl && echo "sigchld_handler: $?"
44
- name: Run tests
45
run: |
46
TEST_SHARED=1 TEST_SUBREAPER=1 cover -test -report codecovbash
t/data/simple_fork.pl
@@ -1,3 +1,4 @@
1
+#!/usr/bin/perl
2
use warnings;
3
use strict;
4
0 commit comments