Skip to content

Commit

Permalink
add test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
willamowius committed Dec 4, 2024
1 parent 5896bc1 commit ba40edf
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Perl Test Suite

on:
push:
branches:
- main
pull_request:

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: '5.40'

- name: Install dependencies
run: cpanm --quiet --installdeps .

- name: Run tests
run: prove -lr t/

0 comments on commit ba40edf

Please sign in to comment.