We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d78befa commit 8a259aeCopy full SHA for 8a259ae
.github/workflows/build-image.yml
@@ -67,6 +67,13 @@ jobs:
67
docker run "$img" cpanm -v Net::[email protected]_02
68
fi
69
docker run "$img" cpanm -v Mojolicious
70
+ - name: Run cpanm no-lwp by default test
71
+ run: |
72
+ dir='${{ matrix.directory }}'
73
+ img="perl:${dir//,/-}"
74
+ if [[ "$dir" != *"slim"* ]]; then
75
+ docker run "$img" bash -c "cpanm -v -n LWP && cpanm -v -n local::lib"
76
+ fi
77
- name: Run cpm install test
78
run: |
79
dir='${{ matrix.directory }}'
0 commit comments