Skip to content

Instantly share code, notes, and snippets.

@artemnovichkov
Created August 27, 2019 12:14
Show Gist options
  • Save artemnovichkov/25d2409d240661ca49bf8d62cf8d45e4 to your computer and use it in GitHub Desktop.
Save artemnovichkov/25d2409d240661ca49bf8d62cf8d45e4 to your computer and use it in GitHub Desktop.
Github Actions configuration for Texstyle https://github.com/rosberry/texstyle
on: pull_request
name: Test
jobs:
test:
name: Test
runs-on: macOS-latest
strategy:
matrix:
destination: ['platform=iOS Simulator,OS=12.2,name=iPhone X', 'platform=tvOS Simulator,OS=12.2,name=Apple TV 4K']
steps:
- name: Checkout
uses: actions/checkout@master
- name: Build and test
run: |
cd Texstyle
xcodebuild clean test -project Texstyle.xcodeproj -scheme Texstyle -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
bash <(curl -s https://codecov.io/bash)
env:
destination: ${{ matrix.destination }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment