Update and rename swift.yml to swift_macos.yml #4
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: Build Swift Package on Windows | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| 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 |