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 26be43e commit efdf0bfCopy full SHA for efdf0bf
1 file changed
.github/workflows/swift.yml
@@ -0,0 +1,18 @@
1
+name: Swift
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ name: Swift ${{ matrix.swift }}
8
+ strategy:
9
+ matrix:
10
+ swift: ["5.10", "6.0", "6.1", "6.2"]
11
+ runs-on: macos-latest
12
+ steps:
13
+ - uses: swift-actions/setup-swift@682457186b71c25a884c45c06f859febbe259240
14
+ with:
15
+ swift-version: ${{ matrix.swift }}
16
+ - uses: actions/checkout@v5
17
+ - name: Build
18
+ run: swift build
0 commit comments