build(deps): bump libcrux-ecdh from 21cf9ca to b7187c5
#3589
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-contracts-schema | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - 'contracts/**' | |
| - 'common/**' | |
| - '.github/workflows/ci-contracts-schema.yml' | |
| jobs: | |
| check-schema: | |
| name: Generate and check schema | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CARGO_TERM_COLOR: always | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v6 | |
| - name: Install Rust toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ vars.REQUIRED_RUSTC_VERSION }} | |
| - name: Generate the schema | |
| run: make contract-schema | |
| - name: Check for diff | |
| run: git diff --exit-code -- contracts/**/schema |