mirror of
https://github.com/drwetter/testssl.sh.git
synced 2024-12-29 04:49:44 +01:00
874932774e
Travis updated the container images so that the perl reference to 5.18 was outdated. We use now 5.26 which works, however we should consider to be more flexible. JSON::Validator didn't compile in the container. Thus we switched to just use 'JSON'. That also supports JSON pretty. For the future we should just test for valid JSON in all unit test files as it is more effective.
16 lines
235 B
YAML
16 lines
235 B
YAML
language: perl
|
|
perl:
|
|
- "5.26"
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- dnsutils
|
|
- jsonlint
|
|
install:
|
|
- cpanm --notest Test::More
|
|
- cpanm --notest Data::Dumper
|
|
- cpanm --notest JSON
|
|
# - cpanm JSON::Validator
|
|
script:
|
|
- prove -v
|