Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alliance #12

Merged
merged 18 commits into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.20.0
- run: go build ./...

tidy:
Expand All @@ -26,12 +26,12 @@ jobs:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.20.0
- run: |
go mod tidy
CHANGES_IN_REPO=$(git status --porcelain)
if [[ -n "$CHANGES_IN_REPO" ]]; then
echo "Repository is dirty. Showing 'git status' and 'git --no-pager diff' for debugging now:"
git status && git --no-pager diff
exit 1
fi
fi
4 changes: 2 additions & 2 deletions .github/workflows/codeql-cosmos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.20.0
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: "go"
queries: crypto-com/cosmos-sdk-codeql@main,security-and-quality

- name: Build
run: make build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.20.0
- uses: actions/checkout@v3

- name: golangci-lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.20.0
- name: Checkout code
uses: actions/checkout@v3
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine AS go-builder
FROM golang:1.20-alpine AS go-builder

# this comes from standard alpine nightly file
# https://github.com/rust-lang/docker-rust-nightly/blob/master/alpine3.12/Dockerfile
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

Migaloo Chain is the home of the White Whale.

This chain began as a fork of wasmd, and is an exploration into better CosmWasm enabled chain templates that more
rigorously follow upstream standards. It began as the wasmd repository, and we're hoping that it will end up as a
This chain began as a fork of wasmd, and is an exploration into better CosmWasm enabled chain templates that more
rigorously follow upstream standards. It began as the wasmd repository, and we're hoping that it will end up as a
feather/ignite/whatever template.

We kept the git history, because that's the way :).
Expand All @@ -21,6 +21,7 @@ We kept the git history, because that's the way :).
7. [Telegram](https://t.me/whitewhaleofficial)

## System Requirements

- Operating System: Linux or macOS
- Disk Space: At least 100GB of free space is recommended.
- CPU: Multi-core processor, 4+ cores recommended
Expand All @@ -29,7 +30,7 @@ We kept the git history, because that's the way :).

## Quick start

Requires [Go 1.19](https://go.dev/doc/install) or higher.
Requires [Go 1.20](https://go.dev/doc/install) or higher.

```bash
make install
Expand Down
Loading