Skip to content

Commit 14deeec

Browse files
authored
Remove Go code and move Solidity code to root. (#113)
* Remove Go code and move Solidity code to root. * Remove go from dependabot. * Move codeowner to root. * Remove stale CI. * Remove go CI workflows. * Test only sol
1 parent 1c0ce83 commit 14deeec

File tree

119 files changed

+16
-34545
lines changed

Some content is hidden

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

119 files changed

+16
-34545
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# most precedence.
55

66
# Primary repo maintainers
7-
ethereum/solidity/ @adlerjohn
7+
@adlerjohn

.github/dependabot.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,3 @@ updates:
55
schedule:
66
interval: daily
77
open-pull-requests-limit: 10
8-
- package-ecosystem: gomod
9-
directory: "/"
10-
schedule:
11-
interval: daily
12-
commit-message:
13-
prefix: "chore"
14-
open-pull-requests-limit: 10
15-
reviewers:
16-
- liamsi
17-
labels:
18-
- "A:Automerge"
19-
- "T:Dependencies"

.github/stale.yml

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

.github/workflows/build.yml

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

.github/workflows/debug.yml

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

.github/workflows/lint.yml

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

.github/workflows/tests.yml

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,6 @@ jobs:
1515
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
1616
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'"
1717

18-
install-tparse:
19-
runs-on: ubuntu-latest
20-
steps:
21-
- uses: actions/setup-go@v3
22-
with:
23-
go-version: 1.17
24-
- name: Display Go Version
25-
run: go version
26-
- name: Install tparse
27-
run: |
28-
export GO111MODULE="on" && go get github.com/mfridman/[email protected]
29-
- uses: actions/cache@v3
30-
with:
31-
path: ~/go/bin
32-
key: ${{ runner.os }}-go-tparse-binary
33-
3418
forge-test:
3519
runs-on: ubuntu-latest
3620
steps:
@@ -42,24 +26,5 @@ jobs:
4226
with:
4327
version: nightly
4428
- name: Run forge test
45-
working-directory: ./ethereum/solidity
29+
working-directory: ./
4630
run: forge test
47-
48-
# test-integration:
49-
# runs-on: ubuntu-latest
50-
# timeout-minutes: 25
51-
# steps:
52-
# - uses: actions/setup-go@v3
53-
# with:
54-
# go-version: 1.17
55-
# - uses: actions/checkout@v3
56-
# - uses: technote-space/[email protected]
57-
# with:
58-
# PATTERNS: |
59-
# **/**.go
60-
# go.mod
61-
# go.sum
62-
# - name: Test Integration
63-
# run: ./test/run-gh-tests.sh
64-
# if: env.GIT_DIFF
65-
# TODO: Add job for unit and coverage testing!

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,12 @@ solidity/deployment/.env
4747

4848
# Foundry
4949
cache/
50+
51+
artifacts
52+
build
53+
cache
54+
.coverage_*
55+
coverage
56+
**/typechain/**/*
57+
node_modules
58+
out/

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "ethereum/solidity/lib/ds-test"]
2-
path = ethereum/solidity/lib/ds-test
2+
path = lib/ds-test
33
url = https://github.com/dapphub/ds-test
44
[submodule "ethereum/solidity/lib/openzeppelin-contracts"]
5-
path = ethereum/solidity/lib/openzeppelin-contracts
5+
path = lib/openzeppelin-contracts
66
url = https://github.com/openzeppelin/openzeppelin-contracts

0 commit comments

Comments
 (0)