Skip to content

Commit

Permalink
fixing mac and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
petdance committed Sep 24, 2024
1 parent 9ebd694 commit 506d558
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ jobs:

steps:
- uses: actions/checkout@v4
- run: brew install perl
- run: perl -V
- name: Install dependencies
uses: perl-actions/install-with-cpanm@v1
Expand Down Expand Up @@ -81,9 +80,9 @@ jobs:
- run: make test

windows:
runs-on: windows-latest
name: "windows"
needs: [perl-versions]
runs-on: windows-latest
env:
PERL_USE_UNSAFE_INC: 0
AUTHOR_TESTING: 1
Expand All @@ -93,7 +92,10 @@ jobs:

steps:
- name: Set up Perl
run: choco install strawberryperl
run: |
choco install strawberryperl
echo "##[add-path]C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin"
- run: perl -V
- name: Install dependencies
uses: perl-actions/install-with-cpanm@v1
Expand Down

0 comments on commit 506d558

Please sign in to comment.