Simplify main program logic and refine tests #39
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: CodeQL | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- '**/*.swift' | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- '**/*.swift' | |
schedule: | |
- cron: '19 12 * * 6' | |
jobs: | |
analyze: | |
name: Analyze with CodeQL | |
runs-on: macos-latest | |
permissions: | |
security-events: write | |
packages: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: swift | |
build-mode: manual | |
- name: Select Xcode | |
uses: mxcl/xcodebuild@v3 | |
with: | |
xcode: 16.0 | |
swift: 6.0 | |
action: none | |
- name: Build | |
run: xcrun swift build --configuration release --arch arm64 --arch x86_64 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:swift" |