Skip to content

Commit 7a816db

Browse files
authored
Update API Docs Workflow (#329)
1 parent 521b6b4 commit 7a816db

20 files changed

+38
-2
lines changed

.github/workflows/api-docs.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ on:
66

77
jobs:
88
build-and-deploy:
9-
uses: vapor/api-docs/.github/workflows/build-and-deploy-docs-workflow.yml@8d28281fe89fd836116d59c7fe217df651ebf41a
9+
uses: vapor/api-docs/.github/workflows/build-and-deploy-docs-workflow.yml@main
1010
secrets: inherit
1111
with:
1212
package_name: postgres-nio
1313
modules: PostgresNIO
14+
pathsToInvalidate: /postgresnio

.github/workflows/test.yml

+10
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,13 @@ jobs:
164164
- name: API breaking changes
165165
run: |
166166
swift package diagnose-api-breaking-changes origin/main
167+
test-exports:
168+
name: Test exports
169+
runs-on: ubuntu-latest
170+
steps:
171+
- name: Check out package
172+
uses: actions/checkout@v3
173+
with:
174+
fetch-depth: 0
175+
- name: Build
176+
run: swift build -Xswiftc -DBUILDING_DOCC

.spi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
version: 1
22
external_links:
3-
documentation: "https://api.vapor.codes/postgres-nio/documentation/postgresnio/"
3+
documentation: "https://api.vapor.codes/postgresnio/documentation/postgresnio/"
44

Sources/PostgresNIO/New/PSQLFrontendMessageEncoder.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import NIOCore
12

23
struct PSQLFrontendMessageEncoder: MessageToByteEncoder {
34
typealias OutboundIn = PostgresFrontendMessage

Sources/PostgresNIO/New/PostgresBackendMessageDecoder.swift

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import NIOCore
2+
13
struct PostgresBackendMessageDecoder: NIOSingleStepByteToMessageDecoder {
24
typealias InboundOut = PostgresBackendMessage
35

Sources/PostgresNIO/New/PostgresQuery.swift

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import NIOCore
2+
13
/// A Postgres SQL query, that can be executed on a Postgres server. Contains the raw sql string and bindings.
24
public struct PostgresQuery: Hashable {
35
/// The query string
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
#if !BUILDING_DOCC
2+
13
// TODO: Remove this with the next major release!
24
@_exported import NIO
35
@_exported import NIOSSL
46
@_exported import struct Logging.Logger
7+
8+
#endif

Sources/PostgresNIO/Utilities/PostgresJSONDecoder.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import class Foundation.JSONDecoder
22
import struct Foundation.Data
33
import NIOFoundationCompat
4+
import NIOCore
45

56
/// A protocol that mimicks the Foundation `JSONDecoder.decode(_:from:)` function.
67
/// Conform a non-Foundation JSON decoder to this protocol if you want PostgresNIO to be

Sources/PostgresNIO/Utilities/PostgresJSONEncoder.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Foundation
22
import NIOFoundationCompat
3+
import NIOCore
34

45
/// A protocol that mimicks the Foundation `JSONEncoder.encode(_:)` function.
56
/// Conform a non-Foundation JSON encoder to this protocol if you want PostgresNIO to be

Tests/IntegrationTests/AsyncTests.swift

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import PostgresNIO
44
#if canImport(Network)
55
import NIOTransportServices
66
#endif
7+
import NIOPosix
8+
import NIOCore
79

810
#if canImport(_Concurrency)
911
final class AsyncPostgresConnectionTests: XCTestCase {

Tests/IntegrationTests/PostgresNIOTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import XCTest
44
import NIOCore
55
import NIOPosix
66
import NIOTestUtils
7+
import NIOSSL
78

89
final class PostgresNIOTests: XCTestCase {
910

Tests/PostgresNIOTests/Message/PostgresMessageDecoderTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import PostgresNIO
22
import XCTest
33
import NIOTestUtils
4+
import NIOCore
45

56
class PostgresMessageDecoderTests: XCTestCase {
67
@available(*, deprecated, message: "Tests deprecated API")

Tests/PostgresNIOTests/New/Extensions/PSQLFrontendMessageDecoder.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@testable import PostgresNIO
2+
import NIOCore
23

34
struct PSQLFrontendMessageDecoder: NIOSingleStepByteToMessageDecoder {
45
typealias InboundOut = PostgresFrontendMessage

Tests/PostgresNIOTests/New/PSQLRowStreamTests.swift

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import NIOCore
22
import Logging
33
import XCTest
44
@testable import PostgresNIO
5+
import NIOCore
6+
import NIOEmbedded
57

68
class PSQLRowStreamTests: XCTestCase {
79
func testEmptyStream() {

Tests/PostgresNIOTests/New/PostgresCellTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@testable import PostgresNIO
22
import XCTest
3+
import NIOCore
34

45
final class PostgresCellTests: XCTestCase {
56
func testDecodingANonOptionalString() {

Tests/PostgresNIOTests/New/PostgresCodableTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import XCTest
22
@testable import PostgresNIO
3+
import NIOCore
34

45
final class PostgresCodableTests: XCTestCase {
56

Tests/PostgresNIOTests/New/PostgresErrorTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@testable import PostgresNIO
22
import XCTest
3+
import NIOCore
34

45
final class PostgresDecodingErrorTests: XCTestCase {
56
func testPostgresDecodingErrorEquality() {

Tests/PostgresNIOTests/New/PostgresQueryTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@testable import PostgresNIO
22
import XCTest
3+
import NIOCore
34

45
final class PostgresQueryTests: XCTestCase {
56

Tests/PostgresNIOTests/New/PostgresRowSequenceTests.swift

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import NIOEmbedded
33
import Dispatch
44
import XCTest
55
@testable import PostgresNIO
6+
import NIOCore
7+
import Logging
68

79
#if canImport(_Concurrency)
810
final class PostgresRowSequenceTests: XCTestCase {

Tests/PostgresNIOTests/New/PostgresRowTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import XCTest
22
@testable import PostgresNIO
3+
import NIOCore
34

45
final class PostgresRowTests: XCTestCase {
56

0 commit comments

Comments
 (0)