Skip to content

Commit

Permalink
Create build_example_project.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenTiigi committed Nov 29, 2022
1 parent 62a05e6 commit 2c95a36
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build_example_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Example Project

on:
workflow_dispatch:
push:
paths:
- 'Example/**'
- 'Sources/**'
pull_request:
paths:
- 'Example/**'
- 'Sources/**'

jobs:
build:
name: Build example project
runs-on: macOS-12
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: xcodebuild build -project Example/Example.xcodeproj -scheme Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14'

0 comments on commit 2c95a36

Please sign in to comment.