From 08e65fffa6f940ce3f13d013f592043eec3841ae Mon Sep 17 00:00:00 2001 From: AntiD2ta Date: Wed, 25 Sep 2024 19:58:40 +0000 Subject: [PATCH] fix: Generate contract bindings in code-format job --- .github/workflows/check-source-code.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-source-code.yml b/.github/workflows/check-source-code.yml index 39e2cf8..5acb7d9 100644 --- a/.github/workflows/check-source-code.yml +++ b/.github/workflows/check-source-code.yml @@ -29,6 +29,12 @@ jobs: with: go-version: ${{ matrix.go }} + - name: Install abigen + run: make install-abigen + + - name: Generate contract bindings + run: make generate + - name: Instal gofumpt run: make install-gofumpt @@ -69,13 +75,10 @@ jobs: with: go-version: ${{ matrix.go }} - - name: Install mockgen - run: make install-mockgen - - name: Install abigen run: make install-abigen - - name: Generate mocks + - name: Generate contract bindings run: make generate - name: Check go mod status