Workflows check for file changes #491
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: Build and Test | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build and test | |
runs-on: macos-14 | |
continue-on-error: true | |
strategy: | |
matrix: | |
include: | |
- xcode: 15.2 | |
- xcode: 14.3.1 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Check for changed files | |
uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
src: | |
- '.github/workflows/build_and_test.yml' | |
- 'Sources/**' | |
- '!Sources/Runestone/Documentation.docc/**' | |
- 'Tests/**' | |
- name: Build | |
if: steps.changes.outputs.src == 'true' | |
run: | | |
xcodebuild build-for-testing\ | |
-scheme Runestone\ | |
-sdk iphonesimulator\ | |
-destination "platform=iOS Simulator,name=generic/platform=iOS Simulator,OS=latest" | |
- name: Test | |
if: steps.changes.outputs.src == 'true' | |
run: | | |
xcodebuild test-without-building\ | |
-scheme Runestone\ | |
-sdk iphonesimulator\ | |
-destination "platform=iOS Simulator,name=generic/platform=iOS Simulator,OS=latest" |