Skip to content

chore(deps): bump github.com/prometheus/client_golang (#8740) #25369

chore(deps): bump github.com/prometheus/client_golang (#8740)

chore(deps): bump github.com/prometheus/client_golang (#8740) #25369

Workflow file for this run

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/get-diff-action@v6.1.2
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