feat(gno.land): add go type checking to keeper + tx simulation in gnokey #2077
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: 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: | |
- "1.22.x" | |
program: | |
- "gnomd" | |
- "gnodev" | |
- "gnofaucet" | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- run: make install.${{ matrix.program }} | |
working-directory: contribs | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: # two latest versions | |
- "1.21.x" | |
- "1.22.x" | |
program: | |
- "gnodev" | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- run: make test.${{ matrix.program }} | |
working-directory: contribs | |
lint: | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: | |
- "1.22.x" | |
program: | |
- "gnodev" | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- run: make lint.${{ matrix.program }} | |
working-directory: contribs | |