added ImmutablePoolCreator contract #105
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: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive # Ensure submodules are checked out and | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.0 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.20.0 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Install dependencies | |
working-directory: ./web3 | |
run: npm install | |
- name: Run Hardhat compile | |
working-directory: ./web3 | |
run: npx hardhat compile | |
- name: Install seer | |
run: go install github.com/G7DAO/seer@latest | |
- name: Build everything | |
run: | | |
make |