Skip to content

Commit 173def3

Browse files
committed
Remove travis
1 parent 2b1cd74 commit 173def3

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

.github/workflows/swift.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Swift
2+
3+
on:
4+
push:
5+
branches: [ "master", "development" ]
6+
pull_request:
7+
branches: [ "master", "development" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: macos-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Build
17+
run: swift build -v
18+
- name: Run tests
19+
run: swift test -v

.travis.yml

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

Source/SocketIO/Ack/SocketAckEmitter.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import Foundation
2828
/// A class that represents a waiting ack call.
2929
///
3030
/// **NOTE**: You should not store this beyond the life of the event handler.
31-
public final class SocketAckEmitter : NSObject {
31+
public final class SocketAckEmitter: NSObject {
3232
private unowned let socket: SocketIOClient
3333
private let ackNum: Int
3434

@@ -101,7 +101,7 @@ public final class SocketAckEmitter : NSObject {
101101
/// ...
102102
/// }
103103
/// ```
104-
public final class OnAckCallback : NSObject {
104+
public final class OnAckCallback: NSObject {
105105
private let ackNumber: Int
106106
private let binary: Bool
107107
private let items: [Any]

0 commit comments

Comments
 (0)