Skip to content

Commit f4c6b08

Browse files
committed
Change dependency management for the CI
1 parent 5faa978 commit f4c6b08

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci-linux.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ jobs:
3131
# with:
3232
# perl-version: ${{ matrix.perl }}
3333
run: |
34-
cpanm --installdeps .
35-
cpanm -n Test::Pod Test::Pod::Coverage Module::Build Devel::Cover Devel::Cover::Report::Codecovbash
34+
cpanm --with-develop --installdeps .
3635
perl Build.PL
3736
./Build build
3837
- name: Run tests

cpanfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ on configure => sub {
99
on test => sub {
1010
requires 'Test::More', '0.98';
1111
};
12+
on develop => sub {
13+
requires 'Devel::Cover::Report::Codecovbash';
14+
requires 'Devel::Cover';
15+
requires 'Test::Pod::Coverage';
16+
requires 'Test::Pod';
17+
}

0 commit comments

Comments
 (0)