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:
19
19
strategy :
20
20
matrix :
21
21
xcode : ['16.3']
22
- config : ['debug', 'release']
23
22
runs-on : macos-15
24
23
steps :
25
24
- uses : actions/checkout@v4
26
25
- name : Select Xcode ${{ matrix.xcode }}
27
26
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
30
31
31
32
linux :
32
33
name : Linux
39
40
steps :
40
41
- uses : actions/checkout@v4
41
42
- 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
43
44
- name : Build
44
45
run : swift build
You can’t perform that action at this time.
0 commit comments