Skip to content

Add job for tests

Add job for tests #2

Workflow file for this run

---
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 }}