Skip to content

Updated CI workflow to use xcpretty for nicer output #59

Updated CI workflow to use xcpretty for nicer output

Updated CI workflow to use xcpretty for nicer output #59

Workflow file for this run

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
- name: Install xcpretty
run: gem install xcpretty

Check failure on line 20 in .github/workflows/macos.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/macos.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- 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