Skip to content

Commit 102e8d8

Browse files
Vid201zsluedem
authored andcommitted
chore: refactoring
1 parent 55cbb8d commit 102e8d8

File tree

133 files changed

+1913
-2405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+1913
-2405
lines changed

.dockerignore

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1+
# Generated by Cargo, executables
2+
target
3+
4+
# GitHub workflows/actions
15
.github
6+
7+
# Documentation
28
docs
9+
10+
# Dockerfile
311
Dockerfile
12+
13+
# Folder containing files for bundler spec tests
414
bundler-spec-tests
5-
target
15+
16+
# Third party dependencies
617
crates/contracts/thirdparty/account-abstraction/*
718
tests/thirdparty/bundler/*

.github/workflows/ci.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,18 @@ jobs:
1919
sudo rm -rf /opt/ghc
2020
sudo rm -rf "/usr/local/share/boost"
2121
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
22+
2223
- uses: actions/checkout@v2
2324

24-
- name: Setup Rust toolchain
25-
uses: actions-rs/toolchain@v1
25+
- name: Setup Rust toolchain (stable)
26+
uses: dtolnay/rust-toolchain@stable
27+
with:
28+
components: clippy
29+
30+
- name: Setup Rust toolchain (nightly)
31+
uses: dtolnay/rust-toolchain@nightly
2632
with:
27-
toolchain: stable
28-
components: rustfmt, clippy
33+
components: rustfmt
2934

3035
- name: Install cargo tools
3136
run: |
@@ -100,6 +105,7 @@ jobs:
100105
repository: eth-infinitism/bundler-spec-tests
101106
ref: 'b9f192f39298e6586729d40f29e3098c92e5c0b9'
102107
submodules: true
108+
103109
- uses: actions/checkout@v3
104110
with:
105111
path:

.gitignore

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
# Generated by Cargo, executables
12
/target
2-
.local
3+
4+
# IDE
35
.vscode
6+
7+
# Node directories
8+
.local
9+
10+
# env files
411
**/.env
512
.env
6-
db

CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @Vid201 @zsluedem

0 commit comments

Comments
 (0)