Skip to content

Commit 62c5cd2

Browse files
committed
Don't run tests in release
1 parent e88deb9 commit 62c5cd2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ jobs:
1919
strategy:
2020
matrix:
2121
xcode: ['16.3']
22-
config: ['debug', 'release']
2322
runs-on: macos-15
2423
steps:
2524
- uses: actions/checkout@v4
2625
- name: Select Xcode ${{ matrix.xcode }}
2726
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
28-
- name: Run ${{ matrix.config }} tests
29-
run: swift test -c ${{ matrix.config }}
27+
- name: Run tests
28+
run: swift test
29+
- name: Build release
30+
run: swift build -c release
3031

3132
linux:
3233
name: Linux
@@ -39,6 +40,6 @@ jobs:
3940
steps:
4041
- uses: actions/checkout@v4
4142
- name: Install SQLite
42-
run: apt-get --fix-missing update && apt-get install -y libsqlite3-dev
43+
run: apt update && apt -y install libsqlite3-dev
4344
- name: Build
4445
run: swift build

0 commit comments

Comments
 (0)