From 08305d055caeb29643016f91d51d88a7cad0b8f2 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 22 Mar 2023 10:31:32 +0100 Subject: [PATCH] add gh action running ci --- .github/workflows/ci.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..393ef01 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,28 @@ +name: build-and-test-module +on: [push, pull_request] +jobs: + perlci: + name: maketest + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + perl-version: + - '5.36' + - '5.30' + - '5.20' + - '5.10' + + container: + image: perldocker/perl-tester:${{ matrix.perl-version }} + + steps: + - uses: actions/checkout@main + with: + submodules: recursive + - run: perl -V + - run: cpanm --notest --installdeps --verbose . + - run: perl Makefile.PL + - run: make + - run: prove -wlvmb t