Skip to content

Update README.md

Update README.md #61

Workflow file for this run

name: ubuntu
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
env:
PREREQS: "Module::Build rlib Test::More Bio::Root::Version Bio::DB::GenBank Bio::Restriction::Analysis XML::DOM::XPath Test::Pod"
runs-on: ubuntu-latest
strategy:
matrix:
perl-version:
- 'latest'
- 'threaded'
- '5.32'
- '5.30'
- '5.28'
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- name: apt packages
run: apt-get update -qq && apt-get install -qq libdb-dev libxml2-dev
- name: perl -V
run: perl -V
- name: Install Dependencies
# By running cpanm this way without testing rather than using ./Build,
# we save *a lot* of time.
run: cpanm --notest ---force $PREREQS
- name: Run Tests
run: perl Build.PL && ./Build && ./Build test