Skip to content

improve error type definitions for more clarity #71

improve error type definitions for more clarity

improve error type definitions for more clarity #71

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-14-xlarge
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'swift' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Select Xcode
run: |
sudo xcode-select -switch /Applications/Xcode_15.2.app
- name: Log xcodebuild Version
run: |
xcodebuild -version
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: security-and-quality
- name: Build
run: |
xcodebuild -scheme CheckoutNetwork -destination "platform=iOS Simulator,name=iPhone 15 Pro,OS=latest"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2