Skip to content

refactor: remove AI model comments #14

refactor: remove AI model comments

refactor: remove AI model comments #14

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '0 0 * * 1' # Run weekly on Mondays
jobs:
analyze:
name: Analyze
runs-on: macos-latest
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'swift' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
- name: Setup GhosttyKit Framework
run: |
chmod +x scripts/setup-ghostty.sh
./scripts/setup-ghostty.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: manual
- name: Build
run: |
xcodebuild -project GitMac.xcodeproj \
-scheme GitMac \
-destination 'platform=macOS' \
-configuration Release \
clean build \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"