Skip to content

Commit

Permalink
Sync fork (#21)
Browse files Browse the repository at this point in the history
* subsquid indexer & processor fix (AcalaNetwork#150)

* update deps (AcalaNetwork#155)

* bypass cache for unfinalized blocks (AcalaNetwork#154)

* endpoint health (AcalaNetwork#152)

* Await healthy endpoint (AcalaNetwork#158)

* use only tracing (AcalaNetwork#157)

* Filter call errors (AcalaNetwork#159)

* validate middleware (AcalaNetwork#156)

* validate middleware

* validate extension for config

* rename

* Improve env handling via preprocessing templated config files (AcalaNetwork#162)

* Feat(config): support ${var:-word} and ${var:+word} syntax (AcalaNetwork#164)

* fix cli default value (AcalaNetwork#169)

* improve reconnect wait time (AcalaNetwork#168)
---------

Co-authored-by: mrq1911 <[email protected]>
Co-authored-by: Ermal Kaleci <[email protected]>
Co-authored-by: Jiyuan Zheng <[email protected]>
  • Loading branch information
4 people authored Apr 29, 2024
1 parent 15565c8 commit de7b426
Show file tree
Hide file tree
Showing 33 changed files with 2,101 additions and 994 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,16 @@ jobs:
steps:
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly-2024-02-09
components: rustfmt, clippy
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Check format
run: cargo fmt --all -- --check
run: cargo +nightly-2024-02-09 fmt --all -- --check
- name: Check clippy
run: cargo clippy --all-targets --all-features -- -D warnings
run: cargo +nightly-2024-02-09 clippy --all-targets --all-features -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down
Loading

0 comments on commit de7b426

Please sign in to comment.