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 3e24856 commit 40d84aeCopy full SHA for 40d84ae
.github/workflows/swift-windows.yml
@@ -0,0 +1,21 @@
1
+name: Swift Windows
2
+on: [push]
3
+jobs:
4
+ windows-build:
5
+ name: Windows
6
+ runs-on: windows-latest
7
+ strategy:
8
+ matrix:
9
+ swift: ["6.1.2"]
10
+ config: ["debug", "release"]
11
+ steps:
12
+ - uses: compnerd/gha-setup-swift@main
13
+ with:
14
+ branch: swift-${{ matrix.swift }}-release
15
+ tag: ${{ matrix.swift }}-RELEASE
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ - name: Swift Version
19
+ run: swift --version
20
+ - name: Build
21
+ run: swift build -c ${{ matrix.config }}
0 commit comments