We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7607810 commit 578c179Copy full SHA for 578c179
.github/workflows/unit_tests_mactest.yml
@@ -0,0 +1,35 @@
1
+name: testssl.sh CI
2
+
3
+on:
4
+ pull_request:
5
+ paths-ignore:
6
+ - 'utils/**'
7
+ - 'doc/**'
8
+ - 'bin/**'
9
+ - '**.md'
10
+ - '**.pem'
11
+ - '**.pdf'
12
+ - '**.html'
13
+ - 'LICENSE'
14
+ - 'Dockerfile'
15
+ - 'Dockerfile-alpine'
16
17
+permissions:
18
+ contents: read
19
20
+jobs:
21
+ build:
22
+ runs-on: macos-14
23
+ name: Testing unit test on MacOS
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ - 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
0 commit comments