Skip to content

Bump docker/build-push-action from 4.1.1 to 6.8.0 #1120

Bump docker/build-push-action from 4.1.1 to 6.8.0

Bump docker/build-push-action from 4.1.1 to 6.8.0 #1120

Workflow file for this run

name: Sims
on:
pull_request:
push:
branches:
- master
jobs:
cleanup-runs:
runs-on: ubuntu-latest
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: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
go-version: 1.19
- name: Install runsim
run: go install github.com/cosmos/tools/cmd/[email protected]
- uses: actions/cache@v3
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
test-sim-nondeterminism:
runs-on: ubuntu-latest
needs: Build
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.19
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- uses: actions/cache@v3
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 != ''"
test-sim-import-export:
runs-on: ubuntu-latest
needs: Build
steps:
- uses: actions/[email protected]
with:
go-version: 1.19
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- uses: actions/cache@v3
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
if: "env.GIT_DIFF != ''"
- name: test-sim-import-export
run: |
make test-sim-import-export
if: "env.GIT_DIFF != ''"
test-sim-after-import:
runs-on: ubuntu-latest
needs: Build
steps:
- uses: actions/[email protected]
with:
go-version: 1.19
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- uses: actions/cache@v3
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
if: "env.GIT_DIFF != ''"
- name: test after import
run: |
make test-sim-after-import
if: "env.GIT_DIFF != ''"
test-sim-multi-seed-short:
runs-on: ubuntu-latest
needs: Build
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.19
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- uses: actions/cache@v3
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
if: "env.GIT_DIFF != ''"
- name: test-sim-multi-seed-short
run: |
make test-sim-multi-seed-short
if: "env.GIT_DIFF != ''"