Update xcode version #3
This file contains 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: Pull Request | |
on: [push] | |
jobs: | |
check-quality: | |
name: "🔎 Check quality" | |
runs-on: tart | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run the quality check | |
run: make check-quality | |
tests: | |
name: "🧪 Tests" | |
runs-on: tart | |
strategy: | |
matrix: | |
platform: [ios, tvos] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: make test-${{ matrix.platform }} |