forked from gitpan/TheSchwartz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Peatix/merge-1.17
Merge 1.17
- Loading branch information
Showing
36 changed files
with
1,314 additions
and
534 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: test | ||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ['ubuntu-latest', 'macOS-latest', 'windows-latest'] | ||
perl: [ '5.30', '5.28', '5.10' ] | ||
exclude: | ||
# not supported on actions-setup-perl | ||
- os: windows-latest | ||
perl: '5.10' | ||
name: Perl ${{ matrix.perl }} on ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Setup perl | ||
uses: shogo82148/actions-setup-perl@v1 | ||
with: | ||
perl-version: ${{ matrix.perl }} | ||
- run: perl -V | ||
- run: cpanm --installdeps . | ||
- run: prove -lr --timer t xt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,12 @@ | ||
use 5.008; | ||
# ========================================================================= | ||
# THIS FILE IS AUTOMATICALLY GENERATED BY MINILLA. | ||
# DO NOT EDIT DIRECTLY. | ||
# ========================================================================= | ||
|
||
use 5.008_001; | ||
use strict; | ||
use warnings; | ||
use Module::Build; | ||
|
||
my $class = Module::Build->subclass( | ||
class => 'My::Builder', | ||
code => q{ | ||
sub ACTION_authortest { | ||
my ($self) = @_; | ||
$self->test_files( qw< xt > ); | ||
$self->recursive_test_files(1); | ||
$self->depends_on('test'); | ||
return; | ||
} | ||
sub ACTION_distdir { | ||
my ($self) = @_; | ||
$self->depends_on('authortest'); | ||
return $self->SUPER::ACTION_distdir(); | ||
} | ||
} | ||
); | ||
use Module::Build::Tiny 0.035; | ||
|
||
my $builder = $class->new( | ||
module_name => 'TheSchwartz', | ||
license => 'perl', | ||
dist_author => 'Six Apart <[email protected]>', | ||
dist_version_from => 'lib/TheSchwartz.pm', | ||
configure_requires => { 'Module::Build' => 0 }, | ||
build_requires => { | ||
'Module::Build' => 0, | ||
'Test::More' => 0, | ||
'Data::ObjectDriver' => 0.04, | ||
'Digest::MD5' => 0, | ||
'Storable' => 0, | ||
}, | ||
requires => { | ||
'Data::ObjectDriver' => 0.04, | ||
'Digest::MD5' => 0, | ||
'Storable' => 0, | ||
}, | ||
add_to_cleanup => [ 'TheSchwartz-*', 'tmp', 'blib', '*.bak', 'META.*' ], | ||
script_files => ['bin/schwartzmon'], | ||
); | ||
Build_PL(); | ||
|
||
$builder->create_build_script(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.