File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 88 steps :
99 - uses : actions/checkout@v2
1010 - name : Build
11- run : swift build -v -c release
11+ run : swift build -v -c debug
1212 - name : Run tests
13- run : swift test -v -c release --filter CodableCSVTests
13+ run : swift test -v -c debug --filter CodableCSVTests
1414
1515 unittests_on_Ubuntu :
1616 name : Unit tests on Ubuntu
2020 steps :
2121 - uses : actions/checkout@v2
2222 - name : Build
23- run : swift build -v -c release
23+ run : swift build -v -c debug
2424 - 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
33extension InputStream {
44 /// Stream for reading from stdin.
55 public static var standardInput : InputStream {
6- Self ( fileAtPath: " /dev/stdin " ) !
6+ InputStream ( fileAtPath: " /dev/stdin " ) !
77 }
88}
99
You can’t perform that action at this time.
0 commit comments