Move crates under substreams directory.

This way we can run GHA jobs depending on what files changed.
This commit is contained in:
kayibal
2024-03-13 23:31:08 +00:00
parent 29e5984a3a
commit e62cc13c0b
14 changed files with 8 additions and 5 deletions

View File

@@ -1,6 +1,9 @@
name: test name: test evm
on: workflow_dispatch on:
push:
paths:
- "evm/**"
env: env:
FOUNDRY_PROFILE: ci FOUNDRY_PROFILE: ci

View File

@@ -13,6 +13,6 @@ directory:
```bash ```bash
buf generate \ buf generate \
--path tycho \ --path tycho \
--template ../crates/tycho-substreams/buf.gen.yaml \ --template ../substreams/crates/tycho-substreams/buf.gen.yaml \
--output ../crates/tycho-substreams/ --output ../substreams/crates/tycho-substreams/
``` ```

View File

@@ -19,7 +19,7 @@ anyhow = "1.0.75"
prost-types = "0.12.3" prost-types = "0.12.3"
num-bigint = "0.4.4" num-bigint = "0.4.4"
itertools = "0.12.0" itertools = "0.12.0"
tycho-substreams = {path ="../../crates/tycho-substreams"} tycho-substreams = {path ="../crates/tycho-substreams"}
[build-dependencies] [build-dependencies]
anyhow = "1" anyhow = "1"