2021-06-06 19:19:23 +02:00
|
|
|
name: testssl.sh CI
|
|
|
|
|
2021-06-19 11:12:00 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'utils/**'
|
|
|
|
- 'docs/**'
|
|
|
|
- 'bin/**'
|
|
|
|
- '**.md'
|
|
|
|
- '**.pem'
|
|
|
|
- '**.pdf'
|
|
|
|
- '**.html'
|
|
|
|
- 'LICENSE'
|
|
|
|
- 'Dockerfile'
|
2021-12-11 19:40:29 +01:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
2021-06-19 11:12:00 +02:00
|
|
|
- 'utils/**'
|
|
|
|
- 'docs/**'
|
|
|
|
- 'bin/**'
|
|
|
|
- '**.md'
|
|
|
|
- '**.pem'
|
|
|
|
- '**.pdf'
|
|
|
|
- '**.html'
|
|
|
|
- 'LICENSE'
|
|
|
|
- 'Dockerfile'
|
2021-06-06 19:19:23 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-06-19 11:17:52 +02:00
|
|
|
os: ['ubuntu-20.04']
|
2021-06-19 10:45:08 +02:00
|
|
|
perl: ['5.26']
|
2021-06-06 19:19:23 +02:00
|
|
|
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up perl
|
|
|
|
uses: shogo82148/actions-setup-perl@v1
|
|
|
|
with:
|
|
|
|
perl-version: ${{ matrix.perl }}
|
|
|
|
- run: perl -V
|
|
|
|
- name: Install deps
|
|
|
|
run: sudo apt install dnsutils jsonlint
|
|
|
|
- run: cpanm --notest Test::More
|
|
|
|
- run: cpanm --notest Data::Dumper
|
|
|
|
- run: cpanm --notest JSON
|
|
|
|
- run: cpanm --notest Text::Diff
|
|
|
|
- run: prove -v
|