Merge pull request #640 from kiwicom/638-update-screenlayoutmodifier-… #1596
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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: set -o pipefail && xcodebuild -scheme Orbit-Package -destination "generic/platform=iOS Simulator" | xcpretty | |
check-components-have-snapshots: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check components have snapshots | |
run: Automation/check_components_have_snapshot_tests.sh | |
check-docc-referenced-types: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check all types are referenced in DocC | |
run: swift package check-documentation | |
test: | |
needs: [build, check-components-have-snapshots, check-docc-referenced-types] | |
strategy: | |
matrix: | |
device: ["iPhone SE (3rd generation)", "iPad (9th generation)"] | |
os_version: ["16.2"] | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test | |
run: | | |
id=$(Automation/get_simulator.py "${{ matrix.device }}" "${{ matrix.os_version }}") | |
set -o pipefail && xcodebuild test -scheme Orbit-Package -destination "platform=iOS Simulator,id=$id,OS=${{ matrix.os_version }}" | xcpretty | |
regenerate_snapshots: | |
if: ${{ failure() }} | |
needs: test | |
uses: ./.github/workflows/regenerate_snapshots.yml | |
secrets: | |
SNAPSHOT_PUSH_TOKEN: ${{ secrets.SNAPSHOT_PUSH_TOKEN }} | |
REF: ${{ github.event.pull_request.head.ref }} |