Workflows check for file changes #107
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: "CodeQL" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: macos-14 | |
permissions: | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ "swift", "c-cpp" ] | |
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: | |
- 'Example/**' | |
- 'Sources/**' | |
- 'Tests/**' | |
- 'UITests/**' | |
- name: Initialize CodeQL | |
if: steps.changes.outputs.src == 'true' | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Build | |
if: steps.changes.outputs.src == 'true' | |
run: | | |
set -o pipefail\ | |
xcodebuild\ | |
-scheme Runestone\ | |
-sdk iphonesimulator\ | |
-destination "platform=iOS Simulator,name=iPhone 15 Pro,OS=latest"\ | |
| xcbeautify --renderer github-actions | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
if: steps.changes.outputs.src == 'true' | |
with: | |
category: "/language:${{matrix.language}}" |