feat(mobile-app): Add extra experimental logging to the mobile-app subcommand #3639
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 1.x | |
| - release/** | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| RUSTFLAGS: -Dwarnings | |
| jobs: | |
| lint: | |
| name: Lint | |
| uses: ./.github/workflows/lint.yml | |
| test: | |
| name: Test | |
| uses: ./.github/workflows/test.yml | |
| test_node: | |
| name: Test Node | |
| uses: ./.github/workflows/test_node.yml | |
| test_swift: | |
| name: Test Swift | |
| uses: ./.github/workflows/swift-test.yml | |
| required: | |
| name: Check required jobs | |
| runs-on: ubuntu-24.04 | |
| needs: [lint, test, test_node, test_swift] | |
| if: always() | |
| steps: | |
| - name: Check for failure | |
| if: ${{ needs.lint.result != 'success' || needs.test.result != 'success' || needs.test_node.result != 'success' || needs.test_swift.result != 'success' }} | |
| run: | | |
| echo "One or more jobs failed" | |
| exit 1 |