Updated documentation + bumped min version to 10.13 in docs etc. #69
This file contains 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: build | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
name: Build on macOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- run: gem install xcpretty | |
- name: Build app | |
run: make build_unsigned | xcpretty -c && exit ${PIPESTATUS[0]} | |
# Tests require GUI environment, disabled in CI | |
#- name: Run tests | |
# run: make clt_tests |