This commit addresses the task of reviewing and improving the machine… #340
Workflow file for this run
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: Windows | |
| on: | |
| push: | |
| branches: ["**"] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # ① Install Swift for Windows | |
| - name: Set up Swift 6.1 | |
| uses: compnerd/gha-setup-swift@main | |
| with: | |
| branch: swift-6.1-release # release branch | |
| tag: 6.1-RELEASE # exact toolchain tag | |
| # ② Build & test | |
| - run: swift --version # sanity-check | |
| - run: swift build | |
| - run: swift test |