File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : tests
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ perl :
7
+ runs-on : ubuntu-latest
8
+ container :
9
+ image : perl:latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - name : install
13
+ run : cpanm . -v -v
14
+ - name : test
15
+ run : perl test/runtests.pl
Original file line number Diff line number Diff line change
1
+ use strict;
2
+ use warnings;
3
+ use ExtUtils::MakeMaker;
4
+
5
+ WriteMakefile(
6
+ NAME => ' Multicsv' ,
7
+ AUTHOR => q{ Juho Snellman <[email protected] >} ,
8
+ VERSION => ' 1.0' ,
9
+ ABSTRACT => ' Split a JSON file with hierarchical data to multiple CSV files' ,
10
+ EXE_FILES => [' json-to-multicsv.pl' ],
11
+ ( $ExtUtils::MakeMaker::VERSION >= 6.3002
12
+ ? ( ' LICENSE' => ' MIT' )
13
+ : () ),
14
+ PREREQ_PM => {
15
+ ' Text::CSV' => 0,
16
+ ' File::Slurp' => 0,
17
+ ' JSON' => 0,
18
+ },
19
+ );
You can’t perform that action at this time.
0 commit comments