Skip to content

Commit

Permalink
Add Windows to CI targets
Browse files Browse the repository at this point in the history
  • Loading branch information
syohex committed Jul 24, 2020
1 parent e2a3417 commit c0d7803
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c0d7803

Please sign in to comment.