Fix for overflow issues when showing menu on some message types #16370
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
on: | |
pull_request: | |
branches: | |
- master | |
name: Validate candid files | |
jobs: | |
candid_syntax: | |
name: validate candid syntax | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install didc 0.3.2 | |
uses: supplypike/setup-bin@v1 | |
with: | |
uri: https://github.com/dfinity/candid/releases/download/2023-07-11/didc-linux64 | |
name: didc | |
version: 0.3.2 | |
- name: run validate-candid-syntax.sh | |
run: ./scripts/validate-candid-syntax.sh | |
shell: bash | |
candid_matches_rust: | |
name: validate candid matches rust | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "build-debug" | |
- name: install didc 0.3.2 | |
uses: supplypike/setup-bin@v1 | |
with: | |
uri: https://github.com/dfinity/candid/releases/download/2023-07-11/didc-linux64 | |
name: didc | |
version: 0.3.2 | |
- name: run validate-candid-matches-rust.sh | |
run: ./scripts/validate-candid-matches-rust.sh | |
shell: bash |