Simplify asset lists search & perpetuals fetch #1327
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: iOS Unit Tests | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| env: | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| jobs: | |
| unit_test: | |
| name: Build and Test iPhone simulator | |
| runs-on: macos-26 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| submodules: recursive | |
| - name: Setup iOS CI | |
| uses: ./.github/actions/setup-ios-ci | |
| - name: Install dependencies | |
| working-directory: ios | |
| run: just install-toolchains | |
| - name: Build Core | |
| working-directory: ios | |
| run: just generate-stone | |
| - name: Resolve SPM Dependencies | |
| working-directory: ios | |
| run: just spm-resolve | |
| - name: Build for Testing | |
| working-directory: ios | |
| run: just build-for-testing | |
| - name: Unit Tests | |
| working-directory: ios | |
| run: just test-without-building |