-
-
Notifications
You must be signed in to change notification settings - Fork 198
36 lines (33 loc) · 791 Bytes
/
macos.yml
File metadata and controls
36 lines (33 loc) · 791 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
# GitHub Actions CI build
name: build
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
name: Build on macOS
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- run: gem install xcpretty
- name: Build app
run: |
make build_unsigned | xcpretty -c && exit ${PIPESTATUS[0]}
- name: Test command line tool install
run: |
cd products/Platypus.app/Contents/Resources
sudo sh InstallCommandLineTool.sh
platypus --version
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Run tests
run: |
pip3 install pytest
make clt_tests