From 4f3a4958f5ec42edcb4c01f0198fe2a6f569925a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?furby=E2=84=A2?= Date: Sat, 6 Apr 2024 02:29:22 -0500 Subject: [PATCH] Add a Microsoft Windows github action. --- .github/workflows/swift-debug-windows.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/swift-debug-windows.yml diff --git a/.github/workflows/swift-debug-windows.yml b/.github/workflows/swift-debug-windows.yml new file mode 100644 index 000000000..0d7983b1d --- /dev/null +++ b/.github/workflows/swift-debug-windows.yml @@ -0,0 +1,20 @@ +name: Run Tests (Microsoft Windows) + +on: [push] + +jobs: + build: + name: Swift ${{ matrix.swift }} on ${{ matrix.os }} + strategy: + matrix: + os: [windows-latest] + swift: ["5.10"] + runs-on: ${{ matrix.os }} + steps: + - uses: compnerd/gha-setup-swift@main + with: + branch: release/5.10 + tag: swift-5.10-RELEASE + - uses: actions/checkout@v4 + - name: 📦 Build + run: swift build -c release --target UsdView