Skip to content

Commit 578c179

Browse files
committed
Testing whether macos=14 works and is for free
1 parent 7607810 commit 578c179

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)