Add claim-rewards action and UI for staking #433
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: 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' }} | |
| jobs: | |
| unit_test: | |
| name: Build and Test iPhone simulator | |
| runs-on: [self-hosted, macOS] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - 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 |