Skip to content

Commit

Permalink
bye
Browse files Browse the repository at this point in the history
  • Loading branch information
technicallyty committed Feb 4, 2025
1 parent 1ae109f commit 9ebf97a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 636 deletions.
22 changes: 7 additions & 15 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,6 @@ COVER_HTML_FILE := cover.html
## Workspaces ##
###############################################################################

use-main:
@go work edit -use .
@go work edit -dropuse ./tests/e2e

use-e2e:
@go work edit -dropuse .
@go work edit -use ./tests/e2e

tidy:
@go mod tidy

Expand Down Expand Up @@ -107,19 +99,19 @@ build-and-start-app: build-test-app
## Docker ##
###############################################################################

docker-build: use-main
docker-build:
@echo "Building E2E Docker image..."
@DOCKER_BUILDKIT=1 docker build -t skip-mev/feemarket-e2e -f contrib/images/feemarket.e2e.Dockerfile .

docker-build-e2e: use-main
docker-build-e2e:
@echo "Building e2e-test Docker image..."
@DOCKER_BUILDKIT=1 docker build -t feemarket-e2e -f contrib/images/feemarket.e2e.Dockerfile .

###############################################################################
### Tests ###
###############################################################################

TEST_E2E_DEPS = docker-build-e2e use-e2e
TEST_E2E_DEPS = docker-build-e2e
TEST_E2E_TAGS = e2e

test-e2e: $(TEST_E2E_DEPS)
Expand Down Expand Up @@ -184,11 +176,11 @@ proto-update-deps:
### Linting ###
###############################################################################

lint: use-main
lint:
@echo "--> Running linter"
./scripts/lint.sh

lint-fix: use-main
lint-fix:
@echo "--> Running linter"
@go run github.com/golangci/golangci-lint/cmd/golangci-lint run --fix --out-format=tab --issues-exit-code=0

Expand All @@ -202,12 +194,12 @@ lint-markdown:
### Formatting ###
###############################################################################

format: use-main
format:
@find . -name '*.go' -type f -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -name '*.pb.go' -not -name '*.pulsar.go' -not -name '*.gw.go' | xargs go run mvdan.cc/gofumpt -w .
@find . -name '*.go' -type f -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -name '*.pb.go' -not -name '*.pulsar.go' -not -name '*.gw.go' | xargs go run github.com/client9/misspell/cmd/misspell -w
@find . -name '*.go' -type f -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -name '*.pb.go' -not -name '*.pulsar.go' -not -name '*.gw.go' | xargs go run golang.org/x/tools/cmd/goimports -w -local github.com/skip-mev/feemarket

mocks: use-main
mocks:
@echo "--> generating mocks"
@go install github.com/vektra/mockery/v2
@go generate ./...
Expand Down
5 changes: 1 addition & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/skip-mev/feemarket

go 1.23.4

toolchain go1.23.5
go 1.23.5

require (
cosmossdk.io/api v0.8.2
Expand Down Expand Up @@ -57,7 +55,6 @@ require (
cosmossdk.io/x/gov v0.0.0-20241218110910-47409028a73d
cosmossdk.io/x/group v0.2.0-rc.1
cosmossdk.io/x/mint v0.2.0-rc.1
cosmossdk.io/x/params v0.2.0-rc.1
cosmossdk.io/x/protocolpool v0.0.0-20241218110910-47409028a73d
cosmossdk.io/x/slashing v0.2.0-rc.1
cosmossdk.io/x/staking v0.2.0-rc.1
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,6 @@ cosmossdk.io/x/mint v0.2.0-rc.1 h1:UVglIphV0hPMbw4gvzoTarC2bBfCvoO+5IwF8aTJTO8=
cosmossdk.io/x/mint v0.2.0-rc.1/go.mod h1:P0p3QyNURFCXsE6uMl2InA7UIxXEnQIOBKCO+ICnd1w=
cosmossdk.io/x/nft v0.2.0-rc.1 h1:4LZiUU+bA/XpZAPtZp7ETaaUPL+cqU8A7hWNqZH1NkM=
cosmossdk.io/x/nft v0.2.0-rc.1/go.mod h1:Btvp0UMBud2P6Ktqwi+9UnzTH9OmRp9sB5llfQcKJY8=
cosmossdk.io/x/params v0.2.0-rc.1 h1:4l4puZCeV1fsrkgn38xQboV8SiaFf+D5qUoNsxqNTS4=
cosmossdk.io/x/params v0.2.0-rc.1/go.mod h1:jD/y9d4xK/c8NS9tmaBS4yp9je9yf6t30tvQfNkhb0Q=
cosmossdk.io/x/protocolpool v0.0.0-20241218110910-47409028a73d h1:tVr2hZAQ+d1uZBivqjPRF3AyJHBexSFvVXpo9QHcEwI=
cosmossdk.io/x/protocolpool v0.0.0-20241218110910-47409028a73d/go.mod h1:hFlRrOD2/7RSqB2Fq39hi+jNYN619CucRW3Tn3CbZGs=
cosmossdk.io/x/slashing v0.2.0-rc.1 h1:RNAV5JN7nIuyDtGclPoN1iFl92Edu71ERl/OtFSS06I=
Expand Down
3 changes: 0 additions & 3 deletions go.work

This file was deleted.

Loading

0 comments on commit 9ebf97a

Please sign in to comment.