Build Swift Package on Windows #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Swift CI on Windows (Manual Run) | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Swift | |
| uses: SwiftyLab/setup-swift@latest | |
| with: | |
| swift-version: '6.1.0' | |
| - name: Build Swift Package | |
| run: swift build --verbose | |
| # - name: Run Tests | |
| # run: swift test --verbose |