We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 141708a commit 08b043dCopy full SHA for 08b043d
.github/workflows/build.yml .github/workflows/CI.yml
@@ -1,4 +1,4 @@
1
-name: Build
+name: CI
2
3
on:
4
push:
@@ -32,3 +32,14 @@ jobs:
32
brew install xcbeautify
33
- name: Build platform ${{ matrix.destination }}
34
run: set -o pipefail && xcodebuild build -scheme FindFaster -destination "${{ matrix.destination }}" | xcbeautify --renderer github-actions
35
+ test:
36
+ name: Test
37
+ runs-on: macOS-13
38
+ steps:
39
+ - uses: actions/checkout@v3
40
+ - name: Install xcbeautify
41
+ run: |
42
+ brew update
43
+ brew install xcbeautify
44
+ - name: Test
45
+ run: set -o pipefail && xcodebuild test -scheme FindFaster -destination "platform=macOS" | xcbeautify --renderer github-actions
.github/workflows/test.yml
0 commit comments