From 37d3485e633d9a288fe9dcf9b37a75c1ed90a485 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 6 Apr 2020 08:17:29 +0200 Subject: Switch to Github CI --- .github/workflows/perl.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/perl.yml (limited to '.github') diff --git a/.github/workflows/perl.yml b/.github/workflows/perl.yml new file mode 100644 index 0000000..261b9e5 --- /dev/null +++ b/.github/workflows/perl.yml @@ -0,0 +1,33 @@ +name: linux + +on: + push: + branches: + - '*' + pull_request: + branches: + - '*' + +jobs: + perl: + + runs-on: ubuntu-latest + + strategy: + matrix: + perl-version: + - '5.20' + - 'latest' + - 'threaded' + + container: + image: perl:${{ matrix.perl-version }} + + steps: + - uses: actions/checkout@v2 + - name: perl -V + run: perl -V + - name: Install Dependencies + run: curl -sL https://git.io/cpm | perl - install -g --show-build-log-on-failure + - name: Run Tests + run: prove -l t -- cgit v1.2.3