This repository was archived by the owner on Mar 9, 2026. It is now read-only.
chore(deps): update actions/checkout action to v5 - autoclosed #128
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| macos: | |
| strategy: | |
| matrix: | |
| xcode: | |
| - "13.2.1" # Swift 5.5.2 | |
| - "13.4.1" # Swift 5.6.1 | |
| - "14.0" # Swift 5.7 | |
| name: macOS 12 (Xcode ${{ matrix.xcode }}) | |
| runs-on: macos-12 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Select Xcode ${{ matrix.xcode }} | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
| - run: swift test |