We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fecb61 commit b33f38fCopy full SHA for b33f38f
.github/workflows/ci.yml
@@ -0,0 +1,38 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ paths-ignore:
7
+ - '**/README.md'
8
+ - 'CONTRIBUTING.md'
9
+ - 'CODE_OF_CONDUCT.md'
10
+ pull_request:
11
12
13
14
15
16
17
+jobs:
18
+ macos-15:
19
+ name: Build macOS 15
20
+ runs-on: macos-15
21
+ steps:
22
+ - name: Checkout
23
+ uses: actions/checkout@v4
24
+ - name: Build
25
+ run: swift build -v
26
+ # - name: Run tests
27
+ # run: swift test -v
28
+ ubuntu:
29
+ name: Build Linux
30
+ runs-on: ubuntu-latest
31
+ container:
32
+ image: swift:latest
33
34
+ - uses: actions/checkout@v4
35
36
37
38
0 commit comments