Feature: Add installer/AppleScript CI workflows and release v0.1.3 #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: macOS AppleScript | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "src/slicer_uri_bridge/manager.py" | |
| - "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/manager.py" | |
| - "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 |