mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 06:08:38 -04:00
35 lines
700 B
YAML
35 lines
700 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
tags-ignore:
|
|
- '*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
perl:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
perl-version:
|
|
- '5.8'
|
|
- '5.10'
|
|
- '5.18'
|
|
- '5.20'
|
|
- '5.26'
|
|
- 'latest'
|
|
|
|
container:
|
|
image: perl:${{ matrix.perl-version }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: perl -V
|
|
run: perl -V
|
|
- name: Install dependencies
|
|
run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --show-build-log-on-failure
|
|
- name: Run tests
|
|
run: perl Makefile.PL && make && make test
|