Skip to content

Commit

Permalink
add .github/workflows/strawberry.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dankogai committed Oct 27, 2023
1 parent 5b9b18e commit ad4fb2d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/strawberry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI on Perl 5.{38,36} on Strawberry Perl

# manual run only
on: [ workflow_dispatch ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-latest']
perl: [ '5.38', '5.36' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
distribution: strawberry
- run: perl -V
- run: perl Makefile.PL
- run: make test

0 comments on commit ad4fb2d

Please sign in to comment.