We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb7fa30 commit 51a4e2dCopy full SHA for 51a4e2d
1 file changed
.github/workflows/ci.yml
@@ -4,9 +4,14 @@ on:
4
push:
5
branches:
6
- main
7
+ paths-ignore:
8
+ - 'README.md'
9
+ - 'CODE_OF_CONDUCT.md'
10
+ - '.editorconfig'
11
+ - '.spi.yml'
12
pull_request:
13
- - '**'
14
+ - main
15
16
env:
17
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
@@ -23,6 +28,8 @@ jobs:
23
28
- "platform=tvOS Simulator,name=Apple TV"
24
29
25
30
steps:
26
- - uses: actions/checkout@v3
31
+ - uses: actions/checkout@v4
32
+ - name: Install XCBeautify
33
+ run: brew install xcbeautify
27
34
- name: Test platform ${{ matrix.destination }}
- run: set -o pipefail && xcodebuild -scheme OAuthenticator -destination "${{ matrix.destination }}" test | xcpretty
35
+ run: set -o pipefail && xcodebuild -scheme OAuthenticator -destination "${{ matrix.destination }}" test | xcbeautify --renderer github-actions
0 commit comments