NSDK-411 switch between stores and environments fixes #458
Workflow file for this run
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: Pull request CI checks | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Clean build directory | |
| run: make clean | |
| - name: Execute build | |
| run: make build | |
| lint: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Update CocoaPods Specs | |
| run: pod repo update | |
| - name: Install SwiftLint | |
| run: brew install swiftlint | |
| - name: Run SwiftLint | |
| run: swiftlint | |
| test: | |
| runs-on: macos-26 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Validate Fonts | |
| run: | | |
| pip install --upgrade fonttools | |
| make validate-fonts | |
| # This step should be removed after 6 Jan, 2025 when macos-latest updates XCode from 16.0 to 16.2 | |
| - name: Latest XCode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Print Installed Simulators | |
| run: xcrun simctl list | |
| - name: Run VirtusizeCoreTests | |
| run: make virtusize-core-test | |
| - name: Run VirtusizeTests | |
| run: make virtusize-test |