fix(deps): update module github.com/gnolang/gno to v0.2.0 - autoclosed #401
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: 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: ["hello"] | |
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: ["hello"] | |
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}} |