Skip to content

🎨 Palette: Dynamic context for screen readers in list action buttons #107

🎨 Palette: Dynamic context for screen readers in list action buttons

🎨 Palette: Dynamic context for screen readers in list action buttons #107

Workflow file for this run

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