Skip to content

Commit

Permalink
Add GitHub workflow flag to check bindings in sanctuary workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ggiraldez committed Nov 26, 2024
1 parent 8f45387 commit d748a16
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/sanctuary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ on:
type: "string"
required: true
default: "mainnet"
check_bindings:
description: "Check name bindings on contracts, failing if there's any unresolved symbol."
type: "boolean"
required: false
default: false

jobs:
sanctuary:
Expand Down Expand Up @@ -54,4 +59,4 @@ jobs:
- name: "infra run solidity_testing_sanctuary"
uses: "./.github/actions/devcontainer/run"
with:
runCmd: "./scripts/bin/infra run --release --bin solidity_testing_sanctuary -- --shards-count ${{ env.SHARDS_COUNT }} --shard-index ${{ matrix.shard_index }} ${{ inputs.chain }} ${{ inputs.network }}"
runCmd: "./scripts/bin/infra run --release --bin solidity_testing_sanctuary -- --shards-count ${{ env.SHARDS_COUNT }} --shard-index ${{ matrix.shard_index }} ${{ inputs.check_bindings ? '--check-bindings' : '' }} ${{ inputs.chain }} ${{ inputs.network }}"

0 comments on commit d748a16

Please sign in to comment.