Skip to content

Commit 8cdf9ee

Browse files
committed
constently use cpm install action
1 parent 64b123e commit 8cdf9ee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-and-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ jobs:
7676
path: .
7777
- name: Install deps
7878
if: success()
79-
run: >
80-
cpm install -g
81-
--cpanfile cpanfile
82-
--with-suggests
83-
--show-build-log-on-failure
79+
uses: perl-actions/install-with-cpm@v1.4
80+
with:
81+
cpanfile: "cpanfile"
82+
args: "--with-recommends --with-suggests --with-test --with-develop"
83+
sudo: false
8484
- name: Run Tests
8585
if: success()
8686
run: prove -lrv t
@@ -120,7 +120,7 @@ jobs:
120120
uses: perl-actions/install-with-cpm@v1.4
121121
with:
122122
cpanfile: "cpanfile"
123-
args: "--with-recommends --with-suggests --with-test"
123+
args: "--with-recommends --with-suggests --with-test --with-develop"
124124
sudo: false
125125
- run: prove -lrv t
126126
env:

0 commit comments

Comments
 (0)