CodeQL #543
This file contains hidden or 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 | |
| paths: '**/*.swift' | |
| pull_request: | |
| branches: main | |
| paths: '**/*.swift' | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: # Allows manual trigger | |
| jobs: | |
| analyze: | |
| name: Analyze with CodeQL | |
| runs-on: macos-latest | |
| permissions: | |
| security-events: write | |
| packages: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install FFmpeg | |
| run: brew install ffmpeg | |
| - name: Select Xcode | |
| uses: mxcl/xcodebuild@v3 | |
| with: | |
| swift: '6' | |
| action: none | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: swift | |
| build-mode: manual | |
| - name: Build | |
| run: USE_FFMPEG=1 xcrun swift build --arch arm64 -Xswiftc -DFFMPEG | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 | |
| with: | |
| category: "macSubtitleOCR" |