forked from ava-labs/avalanche-interchain-token-transfer
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 918 Bytes
/
Copy pathabi_bindings_checker.yml
File metadata and controls
41 lines (33 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: ABI Go Bindings Checker
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
abi_binding:
name: abi_binding
runs-on: ubuntu-22.04
steps:
- name: Checkout avalanche-interchain-token-transfer repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Install Foundry
run: ./scripts/install_foundry.sh
- name: Generate ABI Go bindings
run: |
export PATH=$PATH:$HOME/.foundry/bin
export GOPATH=$HOME/go
export PATH="$PATH:$GOPATH/bin"
./scripts/abi_bindings.sh
- name: Print diff
run: git --no-pager diff -- abi-bindings/**.go
- name: Fail if diff exists
run: git --no-pager diff --quiet -- abi-bindings/**.go