Skip to content

Commit

Permalink
Improve project setup and testing guidance
Browse files Browse the repository at this point in the history
- Update README.md to guide users through dependency initialization using `forge install`.
- Add test execution instructions post-dependency installation in README.
  • Loading branch information
winor30 committed Dec 16, 2023
1 parent 075ef4d commit d96b5fe
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,20 @@ workflows.

Forge is using submodules to manage dependencies. Initialize the dependencies:

If you are in the root directory of the project, run:

```bash
forge install --root ./contracts
```

If you are in in `contracts/`:

```bash
forge install
```

Then, run the tests:

If you are in the root directory of the project, run:

```bash
Expand Down

0 comments on commit d96b5fe

Please sign in to comment.