[Swift][client] make alamofire version more flexible and build projects on CI before running unit tests (#20913)

* [Swift][client] CI first build the projects then run the unit tests

* [Swift][client] make alamofire version more flexible
This commit is contained in:
Bruno Coelho
2025-03-17 21:05:43 +00:00
committed by GitHub
parent 4c1257a2b6
commit 298d6c2200
9 changed files with 9 additions and 9 deletions

View File

@@ -19,7 +19,7 @@ let package = Package(
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Alamofire/Alamofire", exact: "5.10.2"),
.package(url: "https://github.com/Alamofire/Alamofire", .upToNextMajor(from: "5.10.2")),
.package(url: "https://github.com/mxcl/PromiseKit", .upToNextMajor(from: "8.1.2")),
.package(url: "https://github.com/ReactiveX/RxSwift", .upToNextMajor(from: "6.8.0")),
],