cipherscan/.travis.yml

12 lines
318 B
YAML
Raw Permalink Normal View History

2018-12-12 13:05:32 +01:00
dist: xenial
2018-05-20 01:54:18 +02:00
language: python
script:
- ./cipherscan google.com
2018-12-12 13:05:32 +01:00
- |
if [ "$(./cipherscan -j cloudflare.com | jq -r '.ciphersuite[0].protocols[0]')" == "TLS1.3" ]; then
echo successfully detected TLS1.3 on cloudflare.com
else
echo failed to detect TLS1.3 on cloudflare.com
exit 1
fi