-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (36 loc) · 876 Bytes
/
ci.yaml
File metadata and controls
41 lines (36 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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