Add new host APIs set_storage_or_clear and get_storage_or_zero #23630
This file contains 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 publish | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
isdraft: | |
uses: ./.github/workflows/reusable-isdraft.yml | |
check-publish: | |
runs-on: ubuntu-latest | |
needs: isdraft | |
steps: | |
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7 | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7 | |
with: | |
cache-on-failure: true | |
- name: install parity-publish | |
run: cargo install [email protected] --locked -q | |
- name: parity-publish check | |
run: parity-publish --color always check --allow-unpublished |