fix(deps): update github.com/gnolang/gno digest to 5429655 - autoclosed #93
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}} |