feat: Uninstall a specific version (adds --version) #236
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: Swift | |
| on: | |
| push: {} | |
| pull_request: {} | |
| jobs: | |
| test-macos: | |
| name: Test Xcode ${{ matrix.xcode }} | |
| runs-on: macos-15 | |
| strategy: | |
| matrix: | |
| xcode: ['16.0'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Select Xcode ${{ matrix.xcode }} | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
| - name: Resolve | |
| run: swift package resolve | |
| - name: Build | |
| run: swift build | |
| - name: Run tests | |
| run: swift test 2>&1 | |
| test-linux: | |
| name: Test Linux | |
| strategy: | |
| matrix: | |
| swift: ['6.0'] | |
| runs-on: ubuntu-latest | |
| container: swift:${{ matrix.swift }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test | |
| run: swift test 2>&1 |