mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Add devenv stage to CI pipeline.
This commit is contained in:
parent
5ddbd1a901
commit
eb332cd7ef
1 changed files with 25 additions and 0 deletions
25
.github/workflows/checks.yml
vendored
25
.github/workflows/checks.yml
vendored
|
|
@ -42,3 +42,28 @@ jobs:
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make geth
|
run: make geth
|
||||||
|
|
||||||
|
devenv:
|
||||||
|
name: Devenv
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Set up Go 1.x
|
||||||
|
uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: ^1.20
|
||||||
|
id: go
|
||||||
|
|
||||||
|
- name: Install Foundry
|
||||||
|
uses: foundry-rs/foundry-toolchain@v1
|
||||||
|
|
||||||
|
- name: Check out code into the Go module directory
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Build contracts
|
||||||
|
run: cd suave && forge build
|
||||||
|
|
||||||
|
- name: Run dev environment
|
||||||
|
run: make devnet-up
|
||||||
|
|
||||||
|
# - name: Run mev-share example
|
||||||
|
# run: go run suave/devenv/cmd/main.go
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue