Skip to content

Commit

Permalink
introduce GitHub Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Songmu committed Apr 5, 2024
1 parent e8bde25 commit 774358a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: test
on:
push:
branches:
- "**"
pull_request: {}
jobs:
test:
name: Run Test with Perl ${{ matrix.perl }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
perl:
- '5.36'
- '5.38'
steps:
- uses: actions/checkout@v2
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: |
cpanm --quiet --installdeps --notest --with-recommends .
perl Build.PL && ./Build build && ./Build test

0 comments on commit 774358a

Please sign in to comment.