File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
steps :
9
9
- uses : actions/checkout@v2
10
10
- name : Build
11
- run : swift build -v -c release
11
+ run : swift build -v -c debug
12
12
- name : Run tests
13
- run : swift test -v -c release --filter CodableCSVTests
13
+ run : swift test -v -c debug --filter CodableCSVTests
14
14
15
15
unittests_on_Ubuntu :
16
16
name : Unit tests on Ubuntu
20
20
steps :
21
21
- uses : actions/checkout@v2
22
22
- name : Build
23
- run : swift build -v -c release
23
+ run : swift build -v -c debug
24
24
- name : Run tests
25
- run : swift test -v -c release --filter CodableCSVTests --enable-test-discovery
25
+ run : swift test -v -c debug --filter CodableCSVTests --enable-test-discovery
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Foundation
3
3
extension InputStream {
4
4
/// Stream for reading from stdin.
5
5
public static var standardInput : InputStream {
6
- Self ( fileAtPath: " /dev/stdin " ) !
6
+ InputStream ( fileAtPath: " /dev/stdin " ) !
7
7
}
8
8
}
9
9
You can’t perform that action at this time.
0 commit comments