-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 994 Bytes
/
macos-applescript.yml
File metadata and controls
40 lines (33 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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