diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..d904409 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI + +on: [push] + +jobs: + perl-job: + runs-on: ubuntu-latest + container: + image: perldocker/perl-tester:${{ matrix.perl-version }} # https://hub.docker.com/r/perldocker/perl-tester + strategy: + fail-fast: false + matrix: + perl-version: + - '5.30' +# - '5.32' +# - 'latest' + name: Perl ${{ matrix.perl-version }} + steps: + - uses: actions/checkout@v2 + - name: Regular tests + run: | + cpanm --installdeps --notest . + perl Makefile.PL + make + make test +