Skip to content

Build and test

Build and test #55

name: Build and test
on:
workflow_dispatch
# push:
# branches: 'main'
# pull_request:
# branches: '*'
# schedule:
# - cron: '42 5 * * 0'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
#os: ['ubuntu-latest', 'macos-latest', 'windows-2019']
perl: ['5.38', '5.36', '5.34', '5.32', '5.30', '5.28', '5.26']
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests (no coverage)
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm -n --installdeps .
- run: prove -l t
- name: Run tests (with coverage)
if: ${{ matrix.perl == '5.30' && matrix.os == 'ubuntu-latest' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
perl Makefile.PL
cpanm -n Devel::Cover::Report::Coveralls
cover -test -report Coveralls