From f672ab784283634030fb77f3e68241cd49b40a75 Mon Sep 17 00:00:00 2001 From: shawnlaffan Date: Sat, 7 Sep 2024 10:34:43 +1000 Subject: [PATCH] probe with simpler windows config --- .github/workflows/windows.yml | 2 -- .github/workflows/windows2.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/windows2.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 49fdea89e..a6781adb0 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,8 +27,6 @@ jobs: with: perl-version: "5.38" distribution: strawberry - env: - PERL5LIB: C:\cx\lib\perl - name: perl -V run: perl -V diff --git a/.github/workflows/windows2.yml b/.github/workflows/windows2.yml new file mode 100644 index 000000000..271b257a0 --- /dev/null +++ b/.github/workflows/windows2.yml @@ -0,0 +1,27 @@ +name: Windows + +on: + push: + branches: + - '*' + tags-ignore: + - '*' + pull_request: + +env: + AUTOMATED_TESTING: 1 + +jobs: + perl: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + + - uses: shogo82148/actions-setup-perl@v1 + with: + perl-version: "5.38" + install-modules-with: cpanm + install-modules-args: --with-develop --with-configure --verbose + + - run: prove -l t