sdk%feat: add serde awareness to crates, move newtype definitions to new crate dash-types, drop bincode support
#14
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 |