diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..8af7ac3 --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,22 @@ +name: windows + +on: + - push + - pull_request + +jobs: + perl: + runs-on: windows-latest + strategy: + matrix: + perl-version: + - '5.30' + - '5.32' + name: Perl ${{ matrix.perl-version }} on Windows + steps: + - uses: actions/checkout@v2 + - name: Install Dependencies + run: | + curl -sL https://cpanmin.us/ | perl - -nq --with-develop --installdeps . + - name: Run Tests + run: prove -lr t