Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated version of pay dependency #359

Merged
merged 7 commits into from
Feb 17, 2025
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
8 changes: 5 additions & 3 deletions .github/workflows/ios_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
ios_tests:
runs-on: macos-13
runs-on: macos-14
defaults:
run:
working-directory: example/ios
Expand All @@ -35,7 +35,9 @@ jobs:

- name: Lint check
working-directory: ios
run: swiftlint --config .swiftlint.yml --output "swiftLintReport.json"
run: |
brew install swiftlint
fastlane run swiftlint config_file:".swiftlint.yml" output_file:"swiftLintReport.json" reporter:"json"

- name: Cache iOS reports
uses: actions/cache/save@v4
Expand All @@ -49,5 +51,5 @@ jobs:
xcodebuild test \
-workspace Runner.xcworkspace \
-scheme Runner \
-destination "platform=iOS Simulator,name=iPhone 14" \
-destination "platform=iOS Simulator,name=iPhone 16" \
-enableCodeCoverage YES | xcpretty --utf --color && exit ${PIPESTATUS[0]}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies:
flutter:
sdk: flutter
plugin_platform_interface: ^2.1.8
pay: ^2.0.0
pay: ^3.0.1

dev_dependencies:
flutter_test:
Expand Down
Loading