feat: Download all transfer files / folder #1262
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: CI workflow | |
| on: pull_request | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build and Test project | |
| runs-on: [ self-hosted, iOS ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - uses: jdx/mise-action@6d1e696aa24c1aa1bcc1adea0212707c71ab78a8 | |
| - name: Generate | |
| run: tuist install && tuist generate | |
| - name: Check implicit imports | |
| run: tuist inspect dependencies --only implicit | |
| - name: Build | |
| run: tuist build --clean "SwissTransfer" |