Skip to content

Commit 5906da4

Browse files
Merge pull request #6 from GraphQLSwift/build/graphql-v3
Expands GraphQL & Graphiti dependencies
2 parents b98c7bc + ea1bf09 commit 5906da4

File tree

3 files changed

+6
-21
lines changed

3 files changed

+6
-21
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -61,26 +61,11 @@ jobs:
6161
runs-on: ubuntu-22.04
6262
strategy:
6363
matrix:
64-
swift: ["5.7", "5.8", "5.9", "5.10", "6.0"]
64+
swift: ["5.8", "5.9", "5.10"]
6565
steps:
6666
- uses: swift-actions/setup-swift@v2
6767
with:
6868
swift-version: ${{ matrix.swift }}
6969
- uses: actions/checkout@v3
7070
- name: Test
71-
run: swift test --parallel
72-
73-
# Swift versions older than 5.7 don't have builds for 22.04. https://www.swift.org/download/
74-
backcompat-ubuntu-20_04:
75-
name: Test Swift ${{ matrix.swift }} on Ubuntu 20.04
76-
runs-on: ubuntu-20.04
77-
strategy:
78-
matrix:
79-
swift: ["5.4", "5.5", "5.6"]
80-
steps:
81-
- uses: swift-actions/setup-swift@v2
82-
with:
83-
swift-version: ${{ matrix.swift }}
84-
- uses: actions/checkout@v3
85-
- name: Test
86-
run: swift test --parallel
71+
run: swift test --parallel

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ let package = Package(
77
.library(name: "GraphQLRxSwift", targets: ["GraphQLRxSwift"]),
88
],
99
dependencies: [
10-
.package(url: "https://github.com/GraphQLSwift/GraphQL.git", from: "2.0.0"),
11-
.package(url: "https://github.com/GraphQLSwift/Graphiti.git", from: "1.0.0"),
10+
.package(url: "https://github.com/GraphQLSwift/GraphQL.git", "2.0.0" ..< "4.0.0"),
11+
.package(url: "https://github.com/GraphQLSwift/Graphiti.git", "1.0.0" ..< "3.0.0"),
1212
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.1.0"),
1313
],
1414
targets: [

0 commit comments

Comments
 (0)