diff --git a/.github/workflows/windows-strawberry.yml b/.github/workflows/windows-strawberry.yml index 8b839d8..2ad7680 100644 --- a/.github/workflows/windows-strawberry.yml +++ b/.github/workflows/windows-strawberry.yml @@ -26,10 +26,13 @@ jobs: distribution: strawberry - name: perl -V run: perl -V - - name: Install Dependencies - run: cpanm --installdeps . - - name: Build Module - run: | - perl Makefile.PL - make - make test + - name: Install Dependencies + run: | + cpanm -nq --with-develop --installdeps -v . + - name: Build Module + run: | + perl Makefile.PL + gmake + - name: Run Tests + run: | + gmake test TEST_VERBOSE=1