We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14a8224 commit aedb932Copy full SHA for aedb932
.github/workflows/build-and-test.yaml
@@ -0,0 +1,26 @@
1
+name: Build and test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build-and-run-unit-tests:
13
+ runs-on: macos-13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: macOS
17
+ run: make ci-macos
18
+ - name: iOS
19
+ run: make ci-ios
20
+ check-dist:
21
+ needs: build-and-run-unit-tests
22
23
24
25
+ - name: SwiftPM
26
+ run: make ci-swiftpm
.travis.yml
0 commit comments