-
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,10 +91,12 @@ jobs: | |
key: asdf-${{ runner.os }} | ||
|
||
- name: Set up asdf | ||
uses: asdf-vm/actions/[email protected] | ||
|
||
- name: Set up asdf perl plugin and perl | ||
env: | ||
ASDF_PERL_VERSION: ${{ env.PERL_TEST_VERSION }} | ||
run: | | ||
git clone --depth 1 https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.11.2 && ~/.asdf/bin/asdf plugin add perl || ~/.asdf/bin/asdf update | ||
bash -c '~/.asdf/bin/asdf install perl ${{ env.PERL_TEST_VERSION }} --noman -j 8 || true' | ||
~/.asdf/bin/asdf exec cpan install App::cpanminus | ||
~/.asdf/bin/asdf exec cpanm --notest ${{ env.TEST_PERL_MODULES }} | ||
|