🎨 Palette: Add contextual disambiguation to list action tooltips and accessibility labels #98
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: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Unit tests (macOS) | |
| runs-on: macos-26 | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Select Xcode 26.5 | |
| run: sudo xcode-select -s /Applications/Xcode_26.5.app | |
| - name: Show toolchain | |
| run: xcodebuild -version | |
| - name: Run tests | |
| run: | | |
| set -o pipefail | |
| TEST_DERIVED_DATA=DerivedData \ | |
| TEST_DESTINATION='platform=macOS,arch=arm64' \ | |
| ./Scripts/run-direct-xctest.sh \ | |
| 2>&1 | tee xcodebuild.log | grep -vE '^\s*$' | tail -200 | |
| - name: Upload log on failure | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: xcodebuild-log | |
| path: xcodebuild.log |