Skip to content

fix: Correct spelling errors. #154

fix: Correct spelling errors.

fix: Correct spelling errors. #154

Workflow file for this run

---
name: CI
on: # yamllint disable-line rule:truthy
merge_group:
pull_request:
jobs:
check-quality:
name: 🔎 Check quality
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run the quality check
run: make check-quality
tests:
name: 🧪 Tests
runs-on: macos-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
platform: [ios, tvos]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: make test-${{ matrix.platform }}
- name: Publish report
uses: mikepenz/action-junit-report@v5
if: always()
with:
report_paths: 'fastlane/test_output/*.xml'
check_name: 📋 Unit test report (${{ matrix.platform }})
fail_on_failure: true
build-demos:
name: 🔨 Builds
runs-on: macos-latest
strategy:
matrix:
platform: [ios, tvos]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build the demo
run: make build-${{ matrix.platform }}