Skip to content

chore(deps): Bump node-forge from 1.3.1 to 1.3.2 in /docs #60

chore(deps): Bump node-forge from 1.3.1 to 1.3.2 in /docs

chore(deps): Bump node-forge from 1.3.1 to 1.3.2 in /docs #60

Workflow file for this run

name: Release Sims
on:
pull_request:
branches:
- "rc**"
jobs:

Check failure on line 7 in .github/workflows/release-sims.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release-sims.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
cleanup-runs:
runs-on: depot-ubuntu-22.04-4
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'"
build:
runs-on: depot-ubuntu-22.04-4
if: "!contains(github.event.head_commit.message, 'skip-sims')"
steps:
- uses: actions/checkout@v5
- run: |
make build
newbuild:
runs-on: depot-ubuntu-22.04-4
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.24.x
- name: Install runsim
run: go install github.com/cosmos/tools/cmd/[email protected]
- uses: actions/[email protected]
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
install-runsim:
runs-on: depot-ubuntu-22.04-4
needs: build
steps:
- name: install runsim
run: go install github.com/cosmos/tools/cmd/[email protected]
- uses: actions/[email protected]
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
test-sim-multi-seed-long:
runs-on: depot-ubuntu-22.04-4
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v5
- uses: actions/[email protected]
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
- name: test-sim-multi-seed-long
run: |
make test-sim-multi-seed-long
test-sim-nondeterminism:
runs-on: depot-ubuntu-22.04-4
needs: newbuild
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: 1.24.x
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- uses: actions/[email protected]
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
if: "env.GIT_DIFF != ''"
- name: test nondeterminism
run: |
make test-sim-nondeterminism
if: "env.GIT_DIFF != ''"