This repository was archived by the owner on Mar 26, 2026. It is now read-only.
Add nearIntents swap provider image and mapping #5030
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: Unit Tests | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| # concurrency: | |
| # group: unit-tests-${{ github.ref }} | |
| # cancel-in-progress: false | |
| jobs: | |
| unit_test: | |
| name: Build and Test iPhone simulator | |
| #runs-on: macos-26 | |
| runs-on: [self-hosted, macOS] | |
| steps: | |
| # - name: Setup sccache for GitHub-hosted | |
| # if: runner.environment == 'github-hosted' | |
| # run: | | |
| # echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | |
| # echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| # - name: Cache Cargo Dependencies | |
| # if: runner.environment == 'github-hosted' | |
| # uses: actions/cache@v4 | |
| # with: | |
| # path: | | |
| # ~/.cargo/registry | |
| # ~/.cargo/git | |
| # key: ${{ runner.os }}-cargo-deps-${{ hashFiles('core/Cargo.lock') }} | |
| # restore-keys: | | |
| # ${{ runner.os }}-cargo-deps- | |
| # - name: Cache Cargo Target | |
| # if: runner.environment == 'github-hosted' | |
| # uses: actions/cache@v4 | |
| # with: | |
| # path: | | |
| # core/target | |
| # key: ${{ runner.os }}-cargo-deps-${{ hashFiles('core/Cargo.lock') }} | |
| # restore-keys: | | |
| # ${{ runner.os }}-cargo-deps- | |
| # - name: Cache Swift Package Manager | |
| # if: runner.environment == 'github-hosted' | |
| # uses: actions/cache@v4 | |
| # with: | |
| # path: | | |
| # ~/.swiftpm | |
| # .build | |
| # key: ${{ runner.os }}-spm-${{ hashFiles('Package.resolved') }} | |
| # restore-keys: | | |
| # ${{ runner.os }}-spm- | |
| # - name: Run sccache-cache | |
| # if: runner.environment == 'github-hosted' | |
| # uses: mozilla-actions/[email protected] | |
| # - name: Install just | |
| # if: runner.environment == 'github-hosted' | |
| # run: brew install just | |
| - name: Install dependencies | |
| run: just install-toolchains | |
| - name: Build Core | |
| run: just generate-stone | |
| - name: Resolve SPM Dependencies | |
| run: just spm-resolve | |
| - name: Build for Testing | |
| run: just build-for-testing | |
| - name: Unit Tests | |
| run: just test-without-building |