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 b7bd8cc commit d9f6ddfCopy full SHA for d9f6ddf
.github/workflows/ci.yml
@@ -16,5 +16,15 @@ jobs:
16
- name: Perl version
17
run: perl -V
18
19
+ - name: Install DateTime::Locale with cpanm (verbose)
20
+ run: cpanm --verbose --notest DateTime::Locale
21
+
22
+ - name: Show cpanm build log on failure
23
+ if: failure()
24
+ shell: pwsh
25
+ run: |
26
+ $log = "$env:USERPROFILE\.cpanm\work\$(Get-ChildItem $env:USERPROFILE\.cpanm\work | Sort-Object LastWriteTime -Descending | Select-Object -First 1 -ExpandProperty Name)\build.log"
27
+ if (Test-Path $log) { Get-Content $log }
28
29
- name: Install DateTime with cpanm (verbose)
30
run: cpanm --verbose --notest DateTime
0 commit comments