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 6dc0393 commit a2d4582Copy full SHA for a2d4582
.github/workflows/build-image.yml
@@ -48,8 +48,13 @@ jobs:
48
img="perl:${dir//,/-}"
49
docker image inspect --format '{{.Created}}' "$img"
50
docker image inspect --format '{{.Metadata.LastTagTime}}' "$img"
51
- - name: Run tests
+ - name: Run tests from docker-library/official-images
52
run: |
53
dir='${{ matrix.directory }}'
54
55
./official-images/test/run.sh "$img"
56
+ - name: Run cpanm install test
57
+ run: |
58
+ dir='${{ matrix.directory }}'
59
+ img="perl:${dir//,/-}"
60
+ docker run "$img" cpanm -v Mojolicious
0 commit comments