-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2996 from smartcontractkit/release/0.8.5-rc0
Release/0.8.5 rc0
- Loading branch information
Showing
192 changed files
with
3,259 additions
and
1,507 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
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 |
---|---|---|
@@ -1,43 +1,40 @@ | ||
name: golang/static | ||
on: pull_request | ||
|
||
jobs: | ||
|
||
vet: | ||
name: vet | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: vet | ||
uses: grandcolline/[email protected] | ||
with: | ||
run: vet | ||
comment: false | ||
|
||
# TODO: Enable linters below one by one and fix issues with each | ||
|
||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
- run: go mod download | ||
- run: go vet ./... | ||
shadow: | ||
name: Shadow | ||
name: shadow | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: check | ||
uses: grandcolline/[email protected] | ||
with: | ||
run: shadow | ||
comment: false | ||
|
||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
- run: go get -v golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow | ||
- run: go mod download | ||
- run: go vet -vettool=$HOME/go/bin/shadow ./... | ||
imports: | ||
name: Imports | ||
name: imports | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
- run: go get -v golang.org/x/tools/cmd/goimports | ||
- run: d="$($HOME/go/bin/goimports -d ./)" && if [ -n "$d" ]; then echo "goimports generated output:" ; echo "$d"; exit 1; fi | ||
staticcheck: | ||
name: staticheck | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: check | ||
uses: grandcolline/[email protected] | ||
with: | ||
run: imports | ||
comment: false | ||
|
||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
- run: go install honnef.co/go/tools/cmd/staticcheck | ||
- run: $HOME/go/bin/staticcheck ./... | ||
# TODO: Enable linters below one by one and fix issues with each | ||
# lint: | ||
# name: Lint | ||
# runs-on: ubuntu-latest | ||
|
@@ -48,29 +45,15 @@ jobs: | |
# with: | ||
# run: lint | ||
# comment: false | ||
|
||
# staticcheck: | ||
# name: StaticCheck | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@master | ||
# - name: check | ||
# uses: grandcolline/[email protected] | ||
# with: | ||
# run: staticcheck | ||
# comment: false | ||
|
||
# errcheck: | ||
# name: Errcheck | ||
# name: errcheck | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@master | ||
# - name: check | ||
# uses: grandcolline/[email protected] | ||
# with: | ||
# run: errcheck | ||
# comment: false | ||
|
||
# - uses: actions/setup-go@v2 | ||
# - uses: actions/checkout@v2 | ||
# - run: go get -u github.com/kisielk/errcheck | ||
# # Can't get -ignorepkg to actually ignore internal... This needs more work | ||
# - run: errcheck -ignore 'cltest:.*' -ignoretests -asserts -ignoregenerated ./... | grep -v internal | ||
# sec: | ||
# name: Sec | ||
# runs-on: ubuntu-latest | ||
|
@@ -81,4 +64,4 @@ jobs: | |
# with: | ||
# run: sec | ||
# flags: "-exclude=G104" | ||
# comment: false | ||
# comment: false |
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 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 |
---|---|---|
@@ -1 +1 @@ | ||
0.8.4 | ||
0.8.5 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
status = [ | ||
"Core Tests", | ||
"Explorer", | ||
"Geth Integration Tests", | ||
"Operator UI", | ||
"Parity Integration tests", | ||
"Rust", | ||
"Solidity", | ||
"Yarn Lint", | ||
] | ||
block_labels = [ "do-not-merge-yet" ] | ||
timeout_sec = 3600 # one hour | ||
required_approvals = 1 |
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.