Skip to content

add whitespace to debug CI #133

add whitespace to debug CI

add whitespace to debug CI #133

Workflow file for this run

name: Validate Bindings
on:
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
verify-bindings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: "recursive"
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.21.3"
- name: Setup Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-72e44fb87c38b2acfa2b0b136fc1bc833f71e674
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Log forge version
run: |
forge --version
- name: Install ABIGen
run: |
go install github.com/ethereum/go-ethereum/cmd/[email protected]
- name: Generate Bindings
run: |
npm ci
npm run build
- name: Check for Bindings Changes
run: |
changes=$( git status --porcelain -- ./bindings ./src/evm/contracts )
if [ -n "$changes" ]; then
echo -e "Changes in Generated Bindings:\n$changes"
exit 1
fi