Skip to content

Commit

Permalink
Merge branch 'main' of github.com:LibreCat/Catmandu-ArXiv
Browse files Browse the repository at this point in the history
* 'main' of github.com:LibreCat/Catmandu-ArXiv:
  Update perl-ci.yml
  Update perl-ci.yml
  Create perl-ci.yml
  • Loading branch information
vpeil committed Mar 24, 2021
2 parents cc96e5e + be58712 commit d5e40b5
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/perl-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI Build

on:
push:
branches: '*'
pull_request:
branches: '*'
schedule:
- cron: '42 5 * * 0'
jobs:
perl-job:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
perl-version:
- '5.32'
- '5.30'
- '5.20'
container:
image: perldocker/perl-tester:${{ matrix.perl-version }} # https://hub.docker.com/r/perldocker/perl-tester
name: Perl ${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- name: dependencies
run: |
cpanm --quiet --notest --force --skip-satisfied .
cpanm --quiet --notest --skip-satisfied Devel::Cover
- name: Regular tests
run: |
perl Build.PL
cover -test

0 comments on commit d5e40b5

Please sign in to comment.