Skip to content

Commit

Permalink
Merge branch 'main' into get-rid-nether
Browse files Browse the repository at this point in the history
  • Loading branch information
Fly-Style authored Nov 14, 2024
2 parents 700c935 + 69b2a2d commit 265b3ff
Show file tree
Hide file tree
Showing 43 changed files with 6,845 additions and 302 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
pull_request:

jobs:
Test:
name: Unit Test
go_test:
name: Go Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
Expand All @@ -18,3 +18,18 @@ jobs:
go-version: '1.21'
- name: Test
run: make tests-unit
rust_test:
name: Rust Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
rust:
- 'indexer/**'
- 'offchain/**'
- uses: actions-rust-lang/setup-rust-toolchain@v1
if: steps.filter.outputs.rust == 'true'
- run: cargo test --all-features
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ setup/plugin/config/keys/ecdsa.json
# Near DA RPC libs
libnear_da_rpc_sys.*

# Ignore configuration for DVN or Executor
#offchain/workers_config.toml
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
[submodule "contracts/evm/lib/eigenlayer-middleware"]
path = contracts/evm/lib/eigenlayer-middleware
url = https://github.com/Layr-Labs/eigenlayer-middleware
[submodule "contracts/evm/lib/solady"]
path = contracts/evm/lib/solady
url = https://github.com/vectorized/solady
Loading

0 comments on commit 265b3ff

Please sign in to comment.