diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f30538d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,26 @@ +name: testssl.sh CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: ['ubuntu-latest'] + perl: [ '5.30', '5.26' ] + 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 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0b35f1e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -language: perl -perl: - - "5.26" -addons: - apt: - packages: - - dnsutils - - jsonlint -before_install: - - | - echo "Checking if a CI run is needed post commit: ${TRAVIS_COMMIT_RANGE}" - if ! git diff --name-only ${TRAVIS_COMMIT_RANGE} | grep -qvE '(\.md$)|(\.pem$)|(\.pdf$)|(\.html$)|^(LICENSE)|^(docs)|^(utils)|^(bin)|(Dockerfile)' - then - echo "No code was updated, not running the CI." - exit - fi -install: - - cpanm --notest Test::More - - cpanm --notest Data::Dumper - - cpanm --notest JSON -# - cpanm JSON::Validator -script: - - prove -v