Skip to content

Commit 11e5761

Browse files
authored
Use xcbeautify for actions (finnvoor#7)
1 parent 48108cf commit 11e5761

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/build.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,9 @@ jobs:
2626

2727
steps:
2828
- uses: actions/checkout@v3
29+
- name: Install xcbeautify
30+
run: |
31+
brew update
32+
brew install xcbeautify
2933
- name: Build platform ${{ matrix.destination }}
30-
run: set -o pipefail && xcodebuild build -scheme FindFaster -destination "${{ matrix.destination }}" | xcpretty
34+
run: set -o pipefail && xcodebuild build -scheme FindFaster -destination "${{ matrix.destination }}" | xcbeautify --renderer github-actions

.github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,9 @@ jobs:
1717
runs-on: macOS-13
1818
steps:
1919
- uses: actions/checkout@v3
20+
- name: Install xcbeautify
21+
run: |
22+
brew update
23+
brew install xcbeautify
2024
- name: Test
21-
run: set -o pipefail && xcodebuild test -scheme FindFaster -destination "platform=macOS" | xcpretty
25+
run: set -o pipefail && xcodebuild test -scheme FindFaster -destination "platform=macOS" | xcbeautify --renderer github-actions

0 commit comments

Comments
 (0)