We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f7b29ca + 7b9a6e3 commit 526bccaCopy full SHA for 526bcca
2 files changed
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: testssl.sh CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: ['ubuntu-latest']
11
+ perl: [ '5.30', '5.26' ]
12
+ name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up perl
16
+ uses: shogo82148/actions-setup-perl@v1
17
+ with:
18
+ perl-version: ${{ matrix.perl }}
19
+ - run: perl -V
20
+ - name: Install deps
21
+ run: sudo apt install dnsutils jsonlint
22
+ - run: cpanm --notest Test::More
23
+ - run: cpanm --notest Data::Dumper
24
+ - run: cpanm --notest JSON
25
+ - run: cpanm --notest Text::Diff
26
+ - run: prove -v
.travis.yml
0 commit comments