We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9f8cfea + 2144a87 commit a1ecd3eCopy full SHA for a1ecd3e
.github/workflows/swift.yml
@@ -0,0 +1,33 @@
1
+name: Build Project
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build-macos:
11
12
+ runs-on: macos-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Swift Setup
17
+ uses: YOCKOW/[email protected]
18
+ with:
19
+ swift-version: "5.1"
20
+ - name: Build
21
+ run: swift build
22
+ build-linux:
23
+ runs-on: [ubuntu-18.04]
24
25
26
+ - name: Install xmllint
27
+ run: sudo apt-get install libcurl4-openssl-dev
28
29
30
31
32
33
0 commit comments