Skip to content

Commit

Permalink
chore: refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Vid201 committed Dec 23, 2023
1 parent 55cbb8d commit 0fd4baa
Show file tree
Hide file tree
Showing 133 changed files with 1,913 additions and 2,405 deletions.
13 changes: 12 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# Generated by Cargo, executables
target

# GitHub workflows/actions
.github

# Documentation
docs

# Dockerfile
Dockerfile

# Folder containing files for bundler spec tests
bundler-spec-tests
target

# Third party dependencies
crates/contracts/thirdparty/account-abstraction/*
tests/thirdparty/bundler/*
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,18 @@ jobs:
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/checkout@v2

- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
- name: Setup Rust toolchain (stable)
uses: dtolnay/rust-toolchain@stable
with:
components: clippy

- name: Setup Rust toolchain (nightly)
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: stable
components: rustfmt, clippy
components: rustfmt

- name: Install cargo tools
run: |
Expand Down Expand Up @@ -100,6 +105,7 @@ jobs:
repository: eth-infinitism/bundler-spec-tests
ref: 'b9f192f39298e6586729d40f29e3098c92e5c0b9'
submodules: true

- uses: actions/checkout@v3
with:
path:
Expand Down
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Generated by Cargo, executables
/target
.local

# IDE
.vscode

# Node directories
.local

# env files
**/.env
.env
db
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @Vid201 @zsluedem
Loading

0 comments on commit 0fd4baa

Please sign in to comment.