Testing refs/pull/1666/merge by @ericholguin #2708
Workflow file for this run
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: Run Test Suite | |
run-name: Testing ${{ github.ref }} by @${{ github.actor }} | |
on: | |
push: | |
branches: | |
- "master" | |
- "ci" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
run_tests: | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
include: | |
- xcode: "14.2" | |
ios: "16.2" | |
name: Test iOS (${{ matrix.ios }}) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Select Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: ${{ matrix.xcode }} | |
- name: Run Tests | |
run: xcodebuild test -scheme damus -project damus.xcodeproj -destination 'platform=iOS Simulator,name=iPhone 14,OS=${{ matrix.ios }}' | xcpretty && exit ${PIPESTATUS[0]} |