We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a547c9 commit c659bdaCopy full SHA for c659bda
.github/workflows/windows-strawberry.yml
@@ -0,0 +1,33 @@
1
+name: Windows-Strawberry
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*'
7
+ tags-ignore:
8
9
+ pull_request:
10
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