Skip to content

Commit c659bda

Browse files
committed
Add Windows github tests
1 parent 8a547c9 commit c659bda

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Windows-Strawberry
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
branches:
11+
- '*'
12+
jobs:
13+
build:
14+
runs-on: ${{ matrix.os }}
15+
strategy:
16+
matrix:
17+
os: ['windows-latest']
18+
perl: [ '5.32', '5.30', '5.28' ]
19+
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Set up perl
23+
uses: shogo82148/actions-setup-perl@v1
24+
with:
25+
perl-version: ${{ matrix.perl }}
26+
distribution: strawberry
27+
- name: Install Dependencies
28+
run: cpanm --installdeps .
29+
- name: Build Module
30+
run: |
31+
perl Makefile.PL
32+
make
33+
make test

0 commit comments

Comments
 (0)