Skip to content

Commit 6a5ddc5

Browse files
committed
.github/workflows/build-image.yml: Add step for HTTPS test
Separate the HTTPS access test as a new step for this workflow.
1 parent a200e5b commit 6a5ddc5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build-image.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ jobs:
5353
dir='${{ matrix.directory }}'
5454
img="perl:${dir//,/-}"
5555
./official-images/test/run.sh "$img"
56+
- name: Run HTTPS access test
57+
run: |
58+
dir='${{ matrix.directory }}'
59+
img="perl:${dir//,/-}"
5660
docker run "$img" perl -MHTTP::Tiny -E 'if (HTTP::Tiny->new->get("https://github.com")->{status} == 200) { exit 0 } exit 1'
5761
- name: Run cpanm install test
5862
run: |

0 commit comments

Comments
 (0)