forked from dbsrgits/sql-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (33 loc) · 797 Bytes
/
linux.yml
File metadata and controls
33 lines (33 loc) · 797 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
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