We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f57c2 commit 5783e4cCopy full SHA for 5783e4c
.github/workflows/tests.yml
@@ -8,9 +8,9 @@ jobs:
8
steps:
9
- uses: actions/checkout@v2
10
- name: Build
11
- run: swift build -v
+ run: swift build -v -c release
12
- name: Run tests
13
- run: swift test --filter CodableCSVTests -v
+ run: swift test -v -c release --filter CodableCSVTests
14
15
unittests_on_Ubuntu:
16
name: Unit tests on Ubuntu
@@ -20,6 +20,6 @@ jobs:
20
21
22
23
24
25
- run: swift test --filter CodableCSVTests --enable-test-discovery -v
+ run: swift test -v -c release --filter CodableCSVTests --enable-test-discovery
0 commit comments