Skip to content

Commit

Permalink
Add a Microsoft Windows github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
furby-tm committed Apr 6, 2024
1 parent 04b9839 commit 4f3a495
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/swift-debug-windows.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4f3a495

Please sign in to comment.