Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ on:
description: The Rust toolchain for wasm builds, e.g. "nightly-2025-02-16"
required: false
type: string
default: 'default'
default: "default"
wasm-js-packages:
description: Rust packages to build with wasm-pack, e.g. `["package", "package2"]`.
required: false
Expand Down Expand Up @@ -76,6 +76,11 @@ on:
description: Nightly toolchain for no_std checks. Required when no-std-core-packages or no-std-alloc-packages is provided because `-Zbuild-std` is nightly-only, e.g. "nightly-2025-02-16".
required: false
type: string
generate-clients:
description: Whether to run the generate_clients job.
required: false
type: boolean
default: true

jobs:
format_and_lint_js:
Expand Down Expand Up @@ -464,6 +469,7 @@ jobs:
generate_clients:
name: Check Client Generation
runs-on: ubuntu-latest
if: ${{ inputs.generate-clients }}
steps:
- name: Git Checkout
uses: actions/checkout@v7
Expand Down