Skip to content

Commit

Permalink
CI tests on DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
dehesa committed Aug 27, 2021
1 parent 35fd161 commit 99ace2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v -c release
run: swift build -v -c debug
- name: Run tests
run: swift test -v -c release --filter CodableCSVTests
run: swift test -v -c debug --filter CodableCSVTests

unittests_on_Ubuntu:
name: Unit tests on Ubuntu
Expand All @@ -20,6 +20,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v -c release
run: swift build -v -c debug
- name: Run tests
run: swift test -v -c release --filter CodableCSVTests --enable-test-discovery
run: swift test -v -c debug --filter CodableCSVTests --enable-test-discovery
2 changes: 1 addition & 1 deletion sources/Utils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Foundation
extension InputStream {
/// Stream for reading from stdin.
public static var standardInput: InputStream {
Self(fileAtPath: "/dev/stdin")!
InputStream(fileAtPath: "/dev/stdin")!
}
}

Expand Down

0 comments on commit 99ace2c

Please sign in to comment.