File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build and Test
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ linux :
9
+ runs-on : ubuntu-latest
10
+ strategy :
11
+ fail-fast : false
12
+ matrix :
13
+ image :
14
+ - swift:5.9.2-focal
15
+ - swift:5.10-jammy
16
+ container : ${{ matrix.image }}
17
+ steps :
18
+ - name : Install SQLite
19
+ run : |
20
+ apt-get -qq update
21
+ apt-get -y -qq install libsqlite3-dev
22
+ - name : Checkout Repository
23
+ uses : actions/checkout@v2
24
+ - name : Build Swift Debug Package
25
+ run : swift build -c debug
26
+ - name : Build Swift Release Package
27
+ run : swift build -c release
28
+ nextstep :
29
+ runs-on : macos-latest
30
+ steps :
31
+ - name : Select latest available Xcode
32
+ uses :
maxim-lobanov/[email protected]
33
+ with :
34
+ xcode-version : latest
35
+ - name : Checkout Repository
36
+ uses : actions/checkout@v2
37
+ - name : Build Swift Debug Package
38
+ run : swift build -c debug
39
+ - name : Build Swift Release Package
40
+ run : swift build -c release
You can’t perform that action at this time.
0 commit comments