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.
2 parents a18bd25 + b0c3e6b commit e56b70fCopy full SHA for e56b70f
.github/workflows/main.yml
@@ -0,0 +1,30 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ tags:
7
+ - '*'
8
+ pull_request:
9
+ branches: '*'
10
11
+jobs:
12
+ ubuntu_test:
13
+ name: Ubuntu Build
14
+ runs-on: ubuntu-22.04
15
+ container: swift:6.0-jammy
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Build
19
+ run: swift build -v
20
+ macos_test:
21
+ name: macOS Build
22
+ runs-on: macos-15
23
24
+ - name: Select appropriate Xcode version
25
+ uses: maxim-lobanov/setup-xcode@v1
26
+ with:
27
+ xcode-version: latest-stable
28
29
30
0 commit comments