-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/official-docs
- Loading branch information
Showing
253 changed files
with
7,272 additions
and
2,044 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
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,35 @@ | ||
name: contribs | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
paths: | ||
- "contribs/**" | ||
- ".github/workflows/contribs.yml" | ||
- "gnovm/**.go" | ||
- "gno.land/**.go" | ||
- "tm2/**.go" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
install: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
goversion: # two latest versions | ||
- "1.21.x" | ||
program: | ||
- "gnomd" | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ matrix.goversion }} | ||
- run: make install ${{ matrix.program }} | ||
working-directory: contribs |
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# man 5 gitmailmap | ||
# git log --mailmap --pretty=short | grep ^Author: | sort -u | ||
Jae Kwon <[email protected]> Jae Kwon <[email protected]> | ||
Jae Kwon <[email protected]> Jae Kwon <[email protected]> | ||
Jae Kwon <[email protected]> jaekwon <[email protected]> | ||
Jae Kwon <[email protected]> Naut Jae <[email protected]> | ||
Thomas Bruyelle <[email protected]> Thomas Bruyelle <[email protected]> | ||
Thomas Bruyelle <[email protected]> Thomas Bruyelle <[email protected]> | ||
Miloš Živković <[email protected]> Miloš Živković <[email protected]> | ||
Hariom Verma <[email protected]> Hariom Verma <[email protected]> | ||
Giancarlos Salas <[email protected]> Giancarlos Salas <[email protected]> | ||
Morgan <[email protected]> Morgan <[email protected]> |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.PHONY: help | ||
help: | ||
@echo "Available make commands:" | ||
@cat Makefile | grep '^[a-z][^:]*:' | cut -d: -f1 | sort | sed 's/^/ /' | ||
|
||
.PHONY: install | ||
install: install.gnomd | ||
|
||
install.gnomd:; cd gnomd && go install . | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -rf build | ||
|
||
######################################## | ||
# Dev tools | ||
rundep=go run -modfile ../misc/devdeps/go.mod | ||
|
||
.PHONY: fmt | ||
GOFMT_FLAGS ?= -w | ||
fmt: | ||
$(rundep) mvdan.cc/gofumpt $(GOFMT_FLAGS) . | ||
|
||
######################################## | ||
# Test suite | ||
GOTEST_FLAGS ?= -v -p 1 -timeout=30m | ||
|
||
.PHONY: test | ||
test: | ||
@echo "nothing to do." |
Oops, something went wrong.