mac: remove eval script #85
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 Tests | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "apple/InlineKit/**" | |
| - "apple/InlineUI/**" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "apple/InlineKit/**" | |
| - "apple/InlineUI/**" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Swift Tests | |
| runs-on: macos-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set Xcode version | |
| run: sudo xcode-select -s /Applications/Xcode_26.0.app | |
| - name: Swift Version | |
| run: swift --version | |
| - name: Xcode Version | |
| run: xcodebuild -version | |
| - name: Test InlineKit | |
| working-directory: apple/InlineKit | |
| run: swift test | |
| - name: Test InlineUI | |
| working-directory: apple/InlineUI | |
| run: swift test |