forked from dymensionxyz/dymint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a basic integration with dymension settlement layer (dymensionx…
…yz#76) * Added a basic integration with dymension settlement layer for writing and reading state updates. * Updated github workflow to access private dymension repo. * Updated github workflow go version on build. * Updated golangcli job with access to private repo using token. * Removed redundant test file. * Removed package comment from cosmosclient. * Ran go fmt on directory. * Changed golangci-lint version in workflow.
- Loading branch information
1 parent
c915ee2
commit 3d03386
Showing
23 changed files
with
2,735 additions
and
207 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 |
---|---|---|
|
@@ -11,16 +11,20 @@ jobs: | |
golangci: | ||
name: lint | ||
runs-on: ubuntu-latest | ||
env: | ||
GOPRIVATE: "github.com/dymensionxyz/*" | ||
GH_ACCESS_TOKEN: "${{ secrets.GH_ACCESS_TOKEN }}" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.17 | ||
go-version: 1.18 | ||
- run: git config --global url.https://[email protected]/.insteadOf https://github.com/ | ||
- name: golangci-lint | ||
uses: golangci/[email protected] | ||
with: | ||
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version | ||
version: latest | ||
version: v1.47 | ||
|
||
# Optional: working directory, useful for monorepos | ||
# working-directory: somedir | ||
|
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 |
---|---|---|
|
@@ -10,13 +10,17 @@ jobs: | |
|
||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
GOPRIVATE: "github.com/dymensionxyz/*" | ||
GH_ACCESS_TOKEN: "${{ secrets.GH_ACCESS_TOKEN }}" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.17 | ||
go-version: 1.18 | ||
- run: git config --global url.https://[email protected]/.insteadOf https://github.com/ | ||
|
||
- name: Build | ||
run: go build -v ./... | ||
|
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.