Skip to content

Commit

Permalink
Add test GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
memowe committed Sep 6, 2023
1 parent a979003 commit 94af428
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on: [push, workflow_dispatch]

jobs:

test:
runs-on: ubuntu-latest
container:
image: perl:5.38
steps:

- name: Prepare external tools
run: |
sudo apt update
sudo apt install -y poppler-utils
- name: Checkout repository content
uses: actions/checkout@v4

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

- name: Run tests
run: prove -lv

0 comments on commit 94af428

Please sign in to comment.