Skip to content

Commit 08b043d

Browse files
committed
Combine workflows
1 parent 141708a commit 08b043d

File tree

2 files changed

+12
-26
lines changed

2 files changed

+12
-26
lines changed

.github/workflows/build.yml .github/workflows/CI.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: CI
22

33
on:
44
push:
@@ -32,3 +32,14 @@ jobs:
3232
brew install xcbeautify
3333
- name: Build platform ${{ matrix.destination }}
3434
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

-25
This file was deleted.

0 commit comments

Comments
 (0)