-
-
Notifications
You must be signed in to change notification settings - Fork 153
56 lines (56 loc) · 1.52 KB
/
codeql.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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:
XCODEBUILD_DESTINATION: iPhone 15 Pro
XCODEBUILD_OS: 17.2
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
- 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=${{ env.XCODEBUILD_DESTINATION }},OS=${{ env.XCODEBUILD_OS }}"\
| 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}}"