Skip to content

Commit 5783e4c

Browse files
committed
Run Github action tests in release
1 parent 24f57c2 commit 5783e4c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
steps:
99
- uses: actions/checkout@v2
1010
- name: Build
11-
run: swift build -v
11+
run: swift build -v -c release
1212
- name: Run tests
13-
run: swift test --filter CodableCSVTests -v
13+
run: swift test -v -c release --filter CodableCSVTests
1414

1515
unittests_on_Ubuntu:
1616
name: Unit tests on Ubuntu
@@ -20,6 +20,6 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Build
23-
run: swift build -v
23+
run: swift build -v -c release
2424
- name: Run tests
25-
run: swift test --filter CodableCSVTests --enable-test-discovery -v
25+
run: swift test -v -c release --filter CodableCSVTests --enable-test-discovery

0 commit comments

Comments
 (0)