We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e24fcb commit b89a6bdCopy full SHA for b89a6bd
1 file changed
.github/workflows/unit_tests.yml
@@ -23,13 +23,19 @@ jobs:
23
name: Testing unit test on MacOS
24
steps:
25
- uses: actions/checkout@v4
26
+
27
- name: Set up perl etc
- - 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
+ run: |
+ brew install perl curl socat jsonlint
+ perl -V
+ - name: install perl modules
+ cpanm --notest Test::More
+ cpanm --notest Data::Dumper
36
+ cpanm --notest JSON
37
+ cpanm --notest Text::Diff
38
39
+ -name: run it
40
41
+ prove -v
0 commit comments