Skip to content

Merge pull request #43 from mohawk2/fix-links #26

Merge pull request #43 from mohawk2/fix-links

Merge pull request #43 from mohawk2/fix-links #26

Workflow file for this run

name: CI Makefile
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
ubuntu:
strategy:
fail-fast: false
matrix:
perl-version:
- 'latest'
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:${{ matrix.perl-version }} # https://hub.docker.com/r/perldocker/perl-tester
name: Linux ${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
uname -a
apt-get install -y x11proto-dev
cpanm --notest Prima PDL
- name: Build
run: |
perl Makefile.PL
make
- name: Test
run: |
make test