Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,33 @@ jobs:
- run: make test
- run: sudo make install

windows:
needs: [ubuntu]
env:
PERL_USE_UNSAFE_INC: 0
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
RELEASE_TESTING: 1

runs-on: windows-latest

strategy:
fail-fast: false
matrix:
XS: [y, n]

steps:
- uses: actions/checkout@v6
- run: perl -V
- name: install dependencies
uses: perl-actions/install-with-cpm@v2
with:
cpanfile: "cpanfile"
- name: Makefile.PL
run: perl Makefile.PL TT_XS_DEFAULT=${{ matrix.XS }} TT_XS_ENABLE=${{ matrix.XS }} TT_QUIET=n TT_ACCEPT=y
- run: gmake test
- run: gmake install

plugins:
needs: [ubuntu,linux]
env:
Expand Down
Loading