Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
test:
name: Unit-Tests
runs-on: macos-14
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -22,7 +22,7 @@ jobs:
java-version: '17'

- name: Set up XCode
run: sudo xcode-select --switch /Applications/Xcode_15.1.app
run: sudo xcode-select --switch /Applications/Xcode_26.0.app

- name: Bundle Install
run: bundle install
Expand All @@ -35,8 +35,6 @@ jobs:

- name: Unit tests
run: bundle exec fastlane unit_tests
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

- name: Code Coverage
run: bundle exec fastlane coverage
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rm -rf build

sudo xcode-select --switch /Applications/Xcode_15.1.app
sudo xcode-select --switch /Applications/Xcode_26.0.app

xcodebuild archive \
-workspace OSPaymentsLib.xcworkspace \
Expand Down
3 changes: 1 addition & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ default_platform(:ios)
platform :ios do
desc "Lane to run the unit tests"
lane :unit_tests do
run_tests(device: "iPhone 8", scheme: "OSPaymentsLib",
slack_url: ENV['SLACK_WEBHOOK'])
run_tests(device: "iPhone 17", scheme: "OSPaymentsLib")
end

desc "Code coverage"
Expand Down
Loading