fix(deps): update github.com/gnolang/gno digest to c48c59b #726
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: Gno | |
on: | |
pull_request: | |
paths: | |
- "**.go" | |
- "**.gno" | |
- "go.mod" | |
- "go.sum" | |
- ".github/workflows/gno.yml" | |
- "Makefile" | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
realm-tests: | |
name: Realm Tests | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: ["1.18.x"] | |
realm: | |
- 001-hello | |
- 002-args | |
- 003-data | |
- 004-render | |
- 005-import | |
- 006-grc20 | |
- 007-vault | |
- 900-wikipedia-coin | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- uses: actions/checkout@v3 | |
- name: install gnodev | |
run: go install github.com/gnolang/gno/cmd/gnodev | |
- name: gnodev test | |
run: go run github.com/gnolang/gno/cmd/gnodev test ${{matrix.realm}} | |
realm-precompile-build: | |
name: "Realm Precompile & Build" | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: ["1.18.x"] | |
realm: | |
- 001-hello | |
- 002-args | |
- 003-data | |
- 004-render | |
# TODO: needs some makefile tuning to fix the following tests | |
#- 005-import | |
#- 006-grc20 | |
#- 007-vault | |
#- 900-wikipedia-coin | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- uses: actions/checkout@v3 | |
- name: install gnodev | |
run: go install github.com/gnolang/gno/cmd/gnodev | |
- name: gnodev precompile | |
run: go run github.com/gnolang/gno/cmd/gnodev precompile ${{matrix.realm}} | |
- name: gnodev precompile | |
run: go run github.com/gnolang/gno/cmd/gnodev build ${{matrix.realm}} |