Merge pull request #20 from szabgab/header-page-boundary #19
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI Makefile | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| #schedule: | |
| # - cron: '42 5 * * 0' | |
| jobs: | |
| perl-job: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| perl-version: | |
| # - '5.8' | |
| # - '5.30' | |
| - '5.42' | |
| # - 'latest' | |
| 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@v6 | |
| - name: Install libpng | |
| run: | | |
| apt install -y libpng-dev | |
| - name: Prepare for testing | |
| run: | | |
| cpanm --installdep --notest --verbose . | |
| - name: Release tests | |
| env: | |
| RELEASE_TESTING: 1 | |
| run: | | |
| perl Makefile.PL | |
| make | |
| make test |