switch container images in workflow to perldocker/perl-tester images #112
Workflow file for this run
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: linux | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags-ignore: | |
| - '*' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| perl: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| perl-version: | |
| - '5.26' | |
| - '5.32' | |
| - '5.34' | |
| - '5.36' | |
| container: | |
| image: perldocker/perl-tester:${{ matrix.perl-version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: dev packages for testing | |
| run: apt update && apt install -y libgd-dev graphviz libxml2-dev | |
| - name: Install early + extra deps | |
| run: cpanm -n File::ShareDir::Install | |
| - name: Install dependencies | |
| run: cpanm -n --installdeps --with-develop . | |
| - name: Set up | |
| run: perl Makefile.PL | |
| - name: Run Tests | |
| run: prove -lj4 t xt |