summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2020-07-04 19:28:03 -0700
committerRuss Allbery <rra@cpan.org>2020-07-04 19:28:03 -0700
commit8505da7648cb36597e97178fb988377967020a6e (patch)
tree41b08ec88847f53727884989f50b1ea806e38471
parent052fb932c9bc82d821d7f0d6d243895f722b3e43 (diff)
Fix syntax error in GitHub Action
Also remove the perl -V line, which seems unnecessary.
-rw-r--r--.github/workflows/build.yaml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index ca1a04b..58e455c 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -34,11 +34,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: perl -V
- run: perl -V
- uses: perl-actions/install-with-cpm@v1.3
- cpanfile: "cpanfile"
- args: "--with-suggests"
+ with:
+ cpanfile: "cpanfile"
+ args: "--with-suggests"
- name: Build.PL
run: perl Build.PL
- name: make test