Skip to content

Commit

Permalink
1.03
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieb9 committed Jan 5, 2021
1 parent 859419a commit 0cea5a2
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 3 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/github_ci_default.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
perl: [ '5.32', '5.28', '5.24', '5.18', '5.14', '5.10' ]
include:
- perl: '5.32'
os: ubuntu-latest
coverage: true
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm ExtUtils::PL2Bat
- run: cpanm ExtUtils::MakeMaker
- run: cpanm --installdeps .
- name: Run tests (no coverage)
if: ${{ !matrix.coverage }}
run: prove -lv t
- name: Run tests (with coverage)
if: ${{ matrix.coverage }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cpanm -n Devel::Cover::Report::Coveralls
cover -test -report Coveralls
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for Word-Rhymes

1.03 UNREL
1.03 2021-01-05
- Added new limit() parameter, limits the number of rhyming words to
return/display under each syllable section (closes #1)

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pm_to_blib$
.git/
.debug$
.gitignore$
^\.github/
^\w+.pl$
.ignore.txt$
.travis.yml$
Expand Down
4 changes: 2 additions & 2 deletions lib/Word/Rhymes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -364,10 +364,10 @@ __END__
Word::Rhymes - Takes a word and fetches rhyming matches from RhymeZone.com
=for html
<a href="http://travis-ci.com/stevieb9/word-rhymes"><img src="https://www.travis-ci.com/stevieb9/word-rhymes.svg?branch=master"/></a>
<a href="https://ci.appveyor.com/project/stevieb9/word-rhymes"><img src="https://ci.appveyor.com/api/projects/status/x1u0nf8bvfg7q3m3?svg=true"/></a>
<a href="https://github.com/stevieb9/word-rhymes/actions"><img src="https://github.com/stevieb9/word-rhymes/workflows/CI/badge.svg"/></a>
<a href='https://coveralls.io/github/stevieb9/word-rhymes?branch=master'><img src='https://coveralls.io/repos/stevieb9/word-rhymes/badge.svg?branch=master&service=github' alt='Coverage Status' /></a>
=head1 DESCRIPTION
Provides the ability to fetch words that rhyme with a word, while allowing for
Expand Down

0 comments on commit 0cea5a2

Please sign in to comment.