Skip to content

Commit

Permalink
Merge pull request #20 from checkout/feature/test-codeql
Browse files Browse the repository at this point in the history
Analyze CodeQL scanned files
  • Loading branch information
aashna-narula-cko authored Feb 15, 2024
2 parents 4942867 + 57565c1 commit 2633aca
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,19 @@ jobs:
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
- name: Build and analyze CheckoutCardManagementStub
run: |
xcodebuild -scheme CheckoutCardManagement -destination "platform=iOS Simulator,name=iPhone 14 Pro,OS=latest"
xcodebuild -scheme CheckoutCardManagementStub -destination "platform=iOS Simulator,name=iPhone 14 Pro,OS=latest"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
# Perform analysis on the code
- name: Analyze code with CodeQL
uses: github/codeql-action/analyze@v2
with:
database: ${{ github.workspace }}

0 comments on commit 2633aca

Please sign in to comment.