sdk%refac: consolidate exports, types, add utf8 serde codec to process domain names, preserve unknown values, drop legacy macro
#64
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-primitives" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - pkgs/primitives/** | |
| - pkgs/num/** | |
| - pkgs/script/** | |
| - pkgs/types/** | |
| - Cargo.lock | |
| - Cargo.toml | |
| - .github/workflows/pkg_primitives.yml | |
| - .github/workflows/build_stable.yml | |
| - .github/workflows/build_nightly.yml | |
| pull_request: | |
| paths: | |
| - pkgs/primitives/** | |
| - pkgs/num/** | |
| - pkgs/script/** | |
| - pkgs/types/** | |
| - Cargo.lock | |
| - Cargo.toml | |
| - .github/workflows/pkg_primitives.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-primitives | |
| package_dir: primitives | |
| nightly: | |
| uses: ./.github/workflows/build_nightly.yml | |
| with: | |
| package: dash-primitives | |
| package_dir: primitives | |
| secrets: inherit |