pkc%feat(ecdsa): implement recoverable signatures API, Ecdsa{Pk,Sk,RecSig}Bytes as canonical types, EcdsaSigBytes as raw type, split KeyId into {PubKey,Script}Hash and use bitcoin_primitives::script
#122
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: "dash-params" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - pkgs/params/** | |
| - pkgs/num/** | |
| - pkgs/primitives/** | |
| - pkgs/script/** | |
| - Cargo.lock | |
| - Cargo.toml | |
| - .github/workflows/pkg_params.yml | |
| - .github/workflows/build_stable.yml | |
| - .github/workflows/build_nightly.yml | |
| pull_request: | |
| paths: | |
| - pkgs/params/** | |
| - pkgs/num/** | |
| - pkgs/primitives/** | |
| - pkgs/script/** | |
| - Cargo.lock | |
| - Cargo.toml | |
| - .github/workflows/pkg_params.yml | |
| - .github/workflows/build_stable.yml | |
| - .github/workflows/build_nightly.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| stable: | |
| uses: ./.github/workflows/build_stable.yml | |
| with: | |
| package: dash-params | |
| package_dir: params | |
| nightly: | |
| uses: ./.github/workflows/build_nightly.yml | |
| with: | |
| package: dash-params | |
| package_dir: params | |
| secrets: inherit |