We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2403c1e commit 61cc128Copy full SHA for 61cc128
1 file changed
.github/workflows/objective-c-xcode.yml
@@ -0,0 +1,27 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: macos-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: List available Xcode versions
17
+ run: ls /Applications | grep Xcode
18
+ - name: Show current version of Xcode
19
+ run: xcodebuild -version
20
+ - name: Set up Xcode version
21
+ run: sudo xcode-select -s /Applications/Xcode_26.2.0.app/Contents/Developer
22
23
24
+ - name: Install Bundle
25
+ run: bundle install
26
+ - name: Run unit tests
27
+ run: bundle exec fastlane run_unit_tests --verbose
0 commit comments