Skip to content

Commit

Permalink
Moved bits around.
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanIliev545 authored and StefanIliev545 committed Feb 6, 2023
1 parent 4106902 commit b536cde
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,6 @@ jobs:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install abigen
run: |
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get -y install ethereum
- name: Install dependencies
run: cd contracts && npm install
- name: Generate Solidity Contract Bindings
run: cd contracts && npx hardhat generate-abi-bindings --output-dir generated

- name: Set up Go
uses: actions/setup-go@v2
with:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/hardhat-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,15 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install abigen
run: |
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get -y install ethereum
- name: Install dependencies
run: cd contracts && npm install
- name: Generate Solidity Contract Bindings
run: cd contracts && npx hardhat generate-abi-bindings --output-dir generated
- name: Hardhat test
run: cd contracts && npx hardhat test

0 comments on commit b536cde

Please sign in to comment.