Add ResetTestServerState fixture suite, .accessibilityElement(.combin… #195
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install tools | |
| run: brew install swiftlint swiftformat periphery | |
| - name: Lint & Format Check | |
| run: ./Scripts/lint.sh | |
| build-and-test: | |
| name: Build & Test | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build | |
| run: swift build | |
| - name: Test | |
| run: swift test --no-parallel | |
| timeout-minutes: 5 |