-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use actions-setup-perl install method to install cpan modules #967
Conversation
Update install method of cpan packages
Fix syntax
Added Clover package removed coveralls package
Codecov Report
@@ Coverage Diff @@
## master #967 +/- ##
=======================================
Coverage 58.37% 58.37%
=======================================
Files 106 106
Lines 8485 8485
Branches 1323 1323
=======================================
Hits 4953 4953
Misses 2638 2638
Partials 894 894
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
Install cpan modules only via cpanfile
Kannst Du das Review machen? Wenn nicht, kann ja ggf. auch @elektron-bbs mal draufschauen. |
@elektron-bbs |
Von mir aus gern, aber ich bin bei reviewers nicht gelistet. |
@sidey79 |
Der code installiert die im cpanfile hinterlegten Module über die action und nicht mehr per direktem cpan Befehlsaufruf. Hattest Du das erahnt? Wenns passt, dann wäre ein approve sehr schön |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In der Art erahnte ich es. Das etwas installiert wird.
Update install method of cpan packages
This changes the way we install cpan modules during our github actions workflow.
The actions-setup-perl action is used to install cpan modules specified in our cpanfile. This brings us caching of cpan modules which speeds up the wokflow a little bit.
cpan modules are installed via shell commands and are downloaded and installed for every run
cpan modules are installed via actions-setup-perl
installed cpan modules are cached
all needed cpan modules are specified in cpanfile
no
Only for unittesting