Skip to content

Commit 7b9a6e3

Browse files
committed
Migrate from travis-ci.,org to github actions
Kudos to Mikel, see PR #1909
1 parent f7b29ca commit 7b9a6e3

2 files changed

Lines changed: 26 additions & 23 deletions

File tree

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)