Link OOB SDK partial README #139
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: "Run CodeQL" | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'develop' | |
- 'release/*' | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: | |
- 'main' | |
- 'develop' | |
- 'release/*' | |
schedule: | |
- cron: '34 2 * * 0' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: [ macos-latest ] | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'swift' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: security-and-quality | |
debug: true | |
# Build and analyze each scheme separately | |
- name: Build and analyze CheckoutCardManagement | |
run: | | |
xcodebuild -scheme CheckoutCardManagement -destination "platform=iOS Simulator,name=iPhone 14 Pro,OS=latest" | |
- name: Build and analyze CheckoutCardManagementStub | |
run: | | |
xcodebuild -scheme CheckoutCardManagementStub -destination "platform=iOS Simulator,name=iPhone 14 Pro,OS=latest" | |
# Perform analysis on the code | |
- name: Analyze code with CodeQL | |
uses: github/codeql-action/analyze@v2 | |
with: | |
database: ${{ github.workspace }} |