Files
testssl.sh/.github/workflows/unit_tests_macos.yml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 6: did not find expected key
Dirk Wetter b9dda9312d Trying to fix the badge issue
... by having the runner only act on 3.3dev. Sounds counter intuitive but I was recommended to try
2026-06-09 10:16:50 +02:00

59 lines
1.3 KiB
YAML

# "paths-ignore" should be in line with unit_tests_ubuntu.yml
# and shellcheck.yml
---
name: CI run MacOS
on:
pull_request: [3.3dev]
paths-ignore:
- 'utils/**'
- 'doc/**'
- 'bin/**'
- '**.md'
- '**.1'
- '**.html'
- '**.pem'
- '**.pdf'
- '**.yml'
- 'LICENSE'
- 'Dockerfile'
- 'Dockerfile.alpine'
permissions:
contents: read
jobs:
build:
runs-on: macos-26
name: PoC unit test on MacOS
steps:
- name: checkout
uses: actions/checkout@v6
- name: Set up system (perl, curl is installed already)
run: |
brew install socat jsonlint cpanminus
printf "%s\n" "----------"
mv -v /opt/homebrew/bin/openssl /opt/homebrew/bin/openssl.NOPE
printf "%s\n" "----------"
perl -V
printf "%s\n" "----------"
curl --version
printf "%s\n" "----------"
openssl version -a
printf "%s\n" "----------"
bash --version
printf "%s\n" "----------"
- name: Install perl modules
run: |
cpanm --notest Test::More
cpanm --notest Data::Dumper
cpanm --notest JSON
cpanm --notest Text::Diff
- name: run it
run: |
prove -v t 2>&1