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 dc4f4f4 commit f1bf18fCopy full SHA for f1bf18f
.github/workflows/other-perls.yml
@@ -26,8 +26,11 @@ jobs:
26
- name: Install Required Perl Modules
27
run: |
28
cpanm --verbose --notest Module::Build Inline::C Alien::OpenMP \
29
- Util::H2O::More File::Temp Test::Exception Test::Deep \
+ Util::H2O::More File::Temp Test::Exception \
30
OpenMP::Environment File::ShareDir
31
+
32
+ # Conditionally install Test::Deep if Perl version >= 5.12
33
+ perl -e 'exit 1 if $] < 5.012' && cpanm --verbose --notest Test::Deep || echo "Skipping Test::Deep for Perl < 5.12"
34
35
- name: Run Tests
36
run: ./test-runner.sh
0 commit comments