Update Cache dependency to use version 2.0.0 instead of a specific br… #345
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 |