Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
cpanm --with-feature=ci --installdeps --notest .
perl Build.PL
./Build build
- name: Pre-check test scripts
run: |
t/data/simple_rwp.pl && echo "simple_rwp: $?"
t/data/simple_fork.pl && echo "simple_fork: $?"
t/data/sigchld_handler.pl && echo "sigchld_handler: $?"
- name: Run tests
run: |
TEST_SHARED=1 TEST_SUBREAPER=1 cover -test -report codecovbash
Expand Down
1 change: 1 addition & 0 deletions t/data/simple_fork.pl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/perl
use warnings;
use strict;

Expand Down
Loading