chore: Bump store dependency version to v1.1.1-v0.50.11-v28-osmo-2 #25843
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: Simulation | |
# Simulation workflow runs simulation test | |
# This workflow is run on pushes to master & every Pull Requests where a .go, .mod, .sum have been changed | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 🐿 Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.22" | |
- name: Get git diff | |
uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/**.wasm | |
**/**!(test).go | |
tests/**/**.go | |
go.mod | |
go.sum | |
Makefile | |
- name: Run full application simulation | |
run: | | |
make test-sim-app | |
if: env.GIT_DIFF | |
- name: Run simulation determinism check | |
run: | | |
make test-sim-determinism | |
if: env.GIT_DIFF |