Remove throws from LogMonitor.init
#279
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: Test Packages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-on-host: | |
| name: Test on Host | |
| timeout-minutes: 10 | |
| # See available software: https://github.com/actions/runner-images/blob/main/images/macos/macos-26-arm64-Readme.md | |
| strategy: | |
| matrix: | |
| os: [macos-26, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: swift test | |
| test-on-simulator: | |
| name: Test on Simulator | |
| timeout-minutes: 10 | |
| # Wait for test on host | |
| needs: test-on-host | |
| # See available software: https://github.com/actions/runner-images/blob/main/images/macos/macos-26-arm64-Readme.md | |
| strategy: | |
| matrix: | |
| device: [iPhone 17 Pro, Apple Watch Ultra 3 (49mm)] | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: xcodebuild test -scheme Support-Package -destination 'name=${{ matrix.device }}' |