Skip to content

Revert "Use Ubuntu runner for check-quality and build-documentation j… #133

Revert "Use Ubuntu runner for check-quality and build-documentation j…

Revert "Use Ubuntu runner for check-quality and build-documentation j… #133

Workflow file for this run

---
name: Pull Request
on: push # yamllint disable-line rule:truthy
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
# build-documentation:
# name: "📚 Build documentation"
# runs-on: macos-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Build the documentation
# run: make doc
tests:
name: "🧪 Tests"
runs-on: macos-latest
strategy:
matrix:
platform: [ios, tvos]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: make test-${{ matrix.platform }}
# archive-demos:
# name: "📦 Archives"
# runs-on: macos-latest
# strategy:
# matrix:
# platform: [ios, tvos]
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Add Apple certificate
# run: |
# Scripts/add-apple-certificate.sh \
# $RUNNER_TEMP \
# ${{ secrets.KEYCHAIN_PASSWORD }} \
# ${{ secrets.APPLE_DEV_CERTIFICATE }} \
# ${{ secrets.APPLE_DEV_CERTIFICATE_PASSWORD }}
# - name: Configure environment
# run: |
# Scripts/configure-environment.sh \
# ${{ secrets.APP_STORE_CONNECT_API_KEY }}
# - name: Archive the demo
# run: make archive-demo-${{ matrix.platform }}
# env:
# TEAM_ID: ${{ secrets.TEAM_ID }}
# KEY_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ID }}
# KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ISSUER_ID }}
# TESTFLIGHT_GROUPS: ${{ vars.TESTFLIGHT_GROUPS }}