Skip to content

Commit b89a6bd

Browse files
committed
make it better
1 parent 4e24fcb commit b89a6bd

1 file changed

Lines changed: 15 additions & 9 deletions

File tree

.github/workflows/unit_tests.yml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,19 @@ jobs:
2323
name: Testing unit test on MacOS
2424
steps:
2525
- uses: actions/checkout@v4
26+
2627
- name: Set up perl etc
27-
- run: brew install perl curl socat
28-
- run: perl -V
29-
- name: Install deps
30-
run: sudo apt install dnsutils jsonlint
31-
- run: cpanm --notest Test::More
32-
- run: cpanm --notest Data::Dumper
33-
- run: cpanm --notest JSON
34-
- run: cpanm --notest Text::Diff
35-
- run: prove -v
28+
run: |
29+
brew install perl curl socat jsonlint
30+
perl -V
31+
32+
- name: install perl modules
33+
run: |
34+
cpanm --notest Test::More
35+
cpanm --notest Data::Dumper
36+
cpanm --notest JSON
37+
cpanm --notest Text::Diff
38+
39+
-name: run it
40+
run: |
41+
prove -v

0 commit comments

Comments
 (0)