This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
Install abigen before running pre-commit #124
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pre-commit | |
on: [push] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v3 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.16.1" # The Go version to download (if necessary) and use. | |
- name: Install abigen | |
run: go install github.com/ethereum/go-ethereum/cmd/[email protected] | |
- uses: pre-commit/[email protected] |