diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-12-02 18:01:52 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-12-02 18:02:06 +0100 |
commit | c233fd8d5f251a0bd4210cd15ac9b21ae3b3ff28 (patch) | |
tree | d710191b77cf7dfc8b71803fc8f5f172962e615c | |
parent | 129edc5f7ea1618f7367f4bdd76186b3a2ed11f1 (diff) |
GitHub actions: build Services.pm before running tests
-rw-r--r-- | .github/workflows/perl.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/perl.yml b/.github/workflows/perl.yml index 71019fa..7f7c3ec 100644 --- a/.github/workflows/perl.yml +++ b/.github/workflows/perl.yml @@ -29,5 +29,9 @@ jobs: run: perl -V - name: Install Dependencies run: curl -sL https://raw.githubusercontent.com/skaji/cpm/master/cpm | perl - install -g --show-build-log-on-failure + - name: Prepare Build + run: perl Build.PL + - name: build + run: ./Build - name: Run Tests run: prove -l t |