File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff 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
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
You can’t perform that action at this time.
0 commit comments