Skip to content

Commit e3c5118

Browse files
Merge pull request #165 from NeedleInAJayStack/ci/central
2 parents bd5419f + 81dd5e2 commit e3c5118

File tree

4 files changed

+16
-82
lines changed

4 files changed

+16
-82
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

.github/workflows/test.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: test
2+
on:
3+
push:
4+
branches: [ main ]
5+
pull_request:
6+
branches: [ main ]
7+
workflow_dispatch:
8+
jobs:
9+
lint:
10+
uses: graphqlswift/ci/.github/workflows/lint.yaml@main
11+
test:
12+
uses: graphqlswift/ci/.github/workflows/test.yaml@main

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@
55
.swiftpm/
66

77
### CI Artifacts ###
8-
/.test-coverage
8+
/.test-coverage
9+
10+
### VS Code ###
11+
.vscode/

Sources/GraphQL/Subscription/Subscribe.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ func subscribe(
5151
return sourceFuture.map { sourceResult -> SubscriptionResult in
5252
if let sourceStream = sourceResult.stream {
5353
let subscriptionStream = sourceStream.map { eventPayload -> Future<GraphQLResult> in
54-
5554
// For each payload yielded from a subscription, map it over the normal
5655
// GraphQL `execute` function, with `payload` as the rootValue.
5756
// This implements the "MapSourceToResponseEvent" algorithm described in

0 commit comments

Comments
 (0)