diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-04-06 08:17:29 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-04-06 08:17:29 +0200 |
commit | 356de8eb4273967f125a0c4f7c851010b363b860 (patch) | |
tree | 5480587bfaf4fef9db1b889552e12146f7e85e35 /.github/workflows | |
parent | e5fefcf1022b2fb774ece3c61b23a2fa4792957e (diff) |
Switch to Github CI
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/perl.yml | 33 |
1 files changed, 33 insertions, 0 deletions
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 |