fix: account for recursion when stringing to avoid overflow #3275
Workflow file for this run
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
name: examples | |
on: | |
pull_request: | |
paths: | |
- "go.sum" | |
- "gnovm/**.go" | |
- "gnovm/**.gno" | |
- "gnovm/**/go.sum" | |
- "examples/**.gno" | |
- ".github/workflows/examples.yml" | |
push: | |
branches: [ "master" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
gno2go: | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: | |
- "1.20.x" | |
- "1.21.x" | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- run: go install -v ./gnovm/cmd/gno | |
- run: go run ./gnovm/cmd/gno precompile --verbose ./examples | |
- run: go run ./gnovm/cmd/gno build --verbose ./examples | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: | |
- "1.20.x" | |
- "1.21.x" | |
# unittests: TODO: matrix with contracts | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- run: go install -v ./gnovm/cmd/gno | |
- run: go run ./gnovm/cmd/gno test --verbose ./examples/... | |
lint: | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: | |
- "1.20.x" | |
- "1.21.x" | |
# unittests: TODO: matrix with contracts | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- run: go install -v ./gnovm/cmd/gno | |
# testing official directories, basically examples/ minus examples/.../x/. | |
- run: go run ./gnovm/cmd/gno lint --verbose ./examples/gno.land/p | |
- run: go run ./gnovm/cmd/gno lint --verbose ./examples/gno.land/r/demo | |
- run: go run ./gnovm/cmd/gno lint --verbose ./examples/gno.land/r/gnoland | |
- run: go run ./gnovm/cmd/gno lint --verbose ./examples/gno.land/r/system | |
# TODO: track coverage |