Merge pull request #12 from LedgerHQ/cev/fix_makefile_path #55
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: Check that the submodule is up to date | |
| # This workflow ensures that the submodule is up to date with the 'baseapp' branch | |
| # of the https://github.com/LedgerHQ/app-bitcoin-new repository. | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| - develop | |
| pull_request: | |
| jobs: | |
| check_submodule: | |
| name: Check submodule | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone | |
| uses: actions/checkout@v4 | |
| - name: Compare submodule with remote branch | |
| run: | | |
| git submodule update --init --recursive | |
| git submodule update --remote --recursive | |
| git diff --exit-code || { echo "The submodule is not up to date"; exit 1; } |