test #33
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: Pull Request | |
on: | |
pull_request: | |
# branches: | |
# - dev | |
jobs: | |
static-analysis: | |
runs-on: macos-latest | |
outputs: | |
libs: ${{ steps.static-analysis.outputs.libs }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 100 | |
- name: Install Dependencies | |
run: | | |
npm install [email protected] | |
./install.sh | |
- name: Static Analysis and Danger | |
if: ${{ github.event_name == 'pull_request' }} && (success() || failure()) | |
env: | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
# xcodebuild analyze -workspace SalesforceMobileSDK.xcworkspace -scheme MobileSync -sdk 'iphonesimulator' \ | |
# CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR=./clangReport RUN_CLANG_STATIC_ANALYZER=YES | xcbeautify | |
cd .github | |
bundle update && bundle install | |
bundle exec danger --dangerfile=DangerStaticAnalysis.rb | |
ios-pr: | |
needs: [static-analysis] | |
strategy: | |
fail-fast: false | |
matrix: | |
lib: ${{ needs.static-analysis.outputs.libs }} | |
# lib: [SalesforceSDKCommon, SalesforceAnalytics, SalesforceSDKCore, SmartStore, MobileSync] | |
uses: ./.github/workflows/reusable-workflow.yaml | |
with: | |
lib: ${{ matrix.lib }} |