forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove swarm packages and related, fix unit tests (#9)
* Remove swarm packages and related, fix unit tests * chore: add GHA for go-ethereum - for now on-pull-request and test * chore: add GHA for go-ethereum - added thor-upstream branch * chore: add GHA for go-ethereum - check version of go * test: replace make test with go test in github workflow * chore: add env to make test step * chore: add GHA for go-ethereum - remove master following Tony's comment * revert env var in make test step * remove fuzz temproraily Signed-off-by: tony <[email protected]> * skip mobile package in test Signed-off-by: tony <[email protected]> * remove incompatiable parseNode Signed-off-by: tony <[email protected]> --------- Signed-off-by: tony <[email protected]> Co-authored-by: leszek-vechain <[email protected]> Co-authored-by: tony <[email protected]>
- Loading branch information
1 parent
2994c2a
commit 2743143
Showing
280 changed files
with
76 additions
and
65,575 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Pull Request CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- thor-upstream | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run-unit-tests: | ||
name: Run Unit Tests | ||
uses: ./.github/workflows/test.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Unit Tests | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
unit_tests: | ||
strategy: | ||
matrix: | ||
go-version: [ 1.10.x ] | ||
os: [ ubuntu-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Go version | ||
run: go version | ||
|
||
- name: Make all | ||
run: make all | ||
|
||
- name: Make Test | ||
id: unit-test | ||
run: make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.