Skip to content

Feature: Add installer/AppleScript CI workflows and release v0.1.3 #1

Feature: Add installer/AppleScript CI workflows and release v0.1.3

Feature: Add installer/AppleScript CI workflows and release v0.1.3 #1

name: macOS AppleScript
on:
push:
branches: [main]
paths:
- "src/slicer_uri_bridge/resources/macos-launcher.applescript"
- "tests/test_manager_macos.py"
- ".github/workflows/macos-applescript.yml"
pull_request:
paths:
- "src/slicer_uri_bridge/resources/macos-launcher.applescript"
- "tests/test_manager_macos.py"
- ".github/workflows/macos-applescript.yml"
workflow_dispatch:
permissions:
contents: read
jobs:
osacompile:
name: osacompile integration
runs-on: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install package
run: python -m pip install -e .
- name: Run macOS AppleScript tests
run: python -m unittest tests.test_manager_macos