Use reusable Rust SDK workflow to build all Rust apps for every PR #4
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: Build all Rust apps | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
display_branch: | |
name: Display branch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Display branch | |
run: | | |
echo "Branch:" ${{ github.ref }} | |
echo "Head ref:" ${{ github.head_ref }} | |
test_build_rust: | |
name: Build all Rust apps with the reusable workflow | |
uses: LedgerHQ/ledger-device-rust-sdk/.github/workflows/reusable_build_all_apps.yml@y333/update_ci | |
with: | |
c_sdk_branch: ${{ github.head_ref }} |