build(deps): bump github.com/cosmos/cosmos-db from 1.0.2 to 1.1.0 #679
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: test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Test | |
run: go test -v ./... | |
- name: Test Simulation Deterministic | |
run: make test-sim-deterministic | |
- name: Test Simulation Import/Export | |
run: make test-sim-import-export | |
- name: Test Simulation Multi Seed Short | |
run: make test-sim-multi-seed-short |