Skip to content

Commit 93be75e

Browse files
πŸ‘·β€β™‚οΈ Remove DappTools support
1 parent 3a4532b commit 93be75e

File tree

12 files changed

+249
-309
lines changed

12 files changed

+249
-309
lines changed

β€Ž.dapprc

Lines changed: 0 additions & 14 deletions
This file was deleted.

β€Ž.gas-snapshot

Lines changed: 216 additions & 216 deletions
Large diffs are not rendered by default.

β€Ž.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
*.sol linguist-language=Solidity
2-
.dapprc linguist-language=Shell
32
.gas-snapshot linguist-language=Julia

β€Ž.github/pull_request_template.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ Describe the changes made in your pull request here.
66

77
Ensure you completed **all of the steps** below before submitting your pull request:
88

9-
- [ ] Ran `dapp snapshot`?
9+
- [ ] Ran `forge snapshot`?
1010
- [ ] Ran `npm run lint`?
1111
- [ ] Ran `forge test`?
12-
- [ ] Ran `dapp test`?
1312

1413
_Pull requests with an incomplete checklist will be thrown out._

β€Ž.github/workflows/dapp-tests.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

β€Ž.github/workflows/forge-tests.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

β€Ž.github/workflows/tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
forge-tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
11+
- name: Install Foundry
12+
uses: onbjerg/foundry-toolchain@v1
13+
with:
14+
version: nightly
15+
16+
- name: Install dependencies
17+
run: forge install
18+
19+
- name: Check gas snapshots
20+
run: forge snapshot --check
21+
22+
- name: Run tests
23+
run: forge test
24+
env:
25+
# Only fuzz intensely if we're running this action on a push to main or for a PR going into main:
26+
FOUNDRY_PROFILE: ${{ (github.ref == 'refs/heads/main' || github.base_ref == 'main') && "intense" }}

β€Ž.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"solidity.compileUsingRemoteVersion": "v0.8.10",
55
"search.exclude": { "lib": true },
66
"files.associations": {
7-
".dapprc": "shellscript",
87
".gas-snapshot": "julia"
98
}
109
}

β€ŽMakefile

Lines changed: 0 additions & 7 deletions
This file was deleted.

β€ŽREADME.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ We **do not give any warranties** and **will not be liable for any loss** incurr
4141

4242
## Installation
4343

44-
To install with [**DappTools**](https://github.com/dapphub/dapptools):
45-
46-
```sh
47-
dapp install rari-capital/solmate
48-
```
49-
5044
To install with [**Foundry**](https://github.com/gakonst/foundry):
5145

5246
```sh

0 commit comments

Comments
Β (0)