Skip to content

Don't exit server if TLS handshake fails #3

Don't exit server if TLS handshake fails

Don't exit server if TLS handshake fails #3

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
perl: [ '5.32', '5.30', '5.28', '5.10' ]
name: Perl ${{ matrix.perl }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v1
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm --with-recommends --with-suggests --installdeps --notest .
- run: prove -lbvr t