Skip to content

remove test files from release & rename contract client update test #53

remove test files from release & rename contract client update test

remove test files from release & rename contract client update test #53

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: macos-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/[email protected]
- name: Install ABIGen
run: |
go install github.com/ethereum/go-ethereum/cmd/[email protected]
- name: Check for Bindings Changes
run: |
make bindings-gen-go
changes=$( git status --porcelain -- ./bindings )
if [ -n "$changes" ]; then
echo -e "Changes in Generated Bindings:\n$changes"
exit 1
fi
- name: Upload go bindings artifact on error
if: failure()
uses: actions/upload-artifact@v4
with:
name: go-bindings
path: ./bindings/